Skip to content
Snippets Groups Projects
Commit 254dc89b authored by WALTER NOA's avatar WALTER NOA
Browse files

0

parent 16b0b21e
No related merge requests found
Pipeline #294585 failed with stages
in 20 seconds
...@@ -14,8 +14,18 @@ compile-job: ...@@ -14,8 +14,18 @@ compile-job:
artifacts : artifacts :
paths: paths:
- interval.o - interval.o
final-job: final-job:
stage: final # Define the new final job in the final stage stage: final # Define the new final job in the final stage
script: script:
- echo "All done" # Simple job script to indicate completion - echo "All done" # Simple job script to indicate completion
\ No newline at end of file
test-job:
stage: test
script:
- echo "Testing..."
- gcc -c c-check/test_interval.c
- gcc -o test_interval interval.o test_interval.o
- ./test_interval
dependencies:
- compile-job
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment