1
0
mirror of https://git.disroot.org/80486DX2-66/polonium.git synced 2024-11-08 13:42:31 +05:30

CI: fix stage name for test job

This commit is contained in:
Intel A80486DX2-66 2024-07-07 01:45:10 +03:00
parent 0225ffad00
commit 4e0a9ee7bb
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -13,7 +13,7 @@
stages: # List of stages for jobs, and their order of execution
- build
- deploy
- test
build-job: # This job runs in the build stage, which runs first.
stage: build
@ -21,7 +21,7 @@ build-job: # This job runs in the build stage, which runs first.
- make
test-job: # Check if the program works
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
stage: test # It only runs when *both* jobs in the test stage complete successfully.
environment: production
script:
- . ./test.sh