Newer
Older
default:
image: gcc:latest
stages:
- build
- test
- final
compile-job:
stage: build
script:
- echo "Compiling the project..."
final-job:
stage: final # Define the new final job in the final stage
script:
- echo "All done" # Simple job script to indicate completion
test-job:
stage: test
script:
- echo "Testing..."
- gcc -c c-check/test_interval.c -lcheck -lm -lsubunit
- gcc -o test_interval interval.o test_interval.o