Another attempt to get the pipeline to work...

This commit is contained in:
Kieron Morris 2021-06-26 03:05:54 +01:00
parent f69d9e1bbc
commit 3dc65d5685

View File

@ -1,5 +1,7 @@
.after_script: .after_script:
script: ./compile_check.sh "$CI_JOB_STATUS" script:
- chmod +x ./compile_check.sh
- ./compile_check.sh "$CI_JOB_STATUS"
artifacts: artifacts:
paths: paths:
- release/*.svg - release/*.svg
@ -13,42 +15,50 @@ stages:
- isogen - isogen
- finish - finish
chmod_step:
stage: chmod
script: ls && chmod +x ./*.sh
compile_stub: compile_stub:
stage: compile_stub stage: compile_stub
script: ls && ./compile_stub.sh script:
- chmod +x ./compile_stub.sh
- ./compile_stub.sh
vergen: vergen:
stage: vergen stage: vergen
script: ./compile_vergen.sh script:
- chmod +x ./compile_vergen.sh
- ./compile_vergen.sh
artifacts: artifacts:
paths: paths:
- release/*.svg - release/*.svg
compile_sources: compile_sources:
stage: compile_sources stage: compile_sources
script: ./compile_sources.sh script:
- chmod +x ./compile_sources.sh
- ./compile_sources.sh
link: link:
stage: link stage: link
script: ./compile_link.sh script:
- chmod +x ./compile_link.sh
- ./compile_link.sh
artifacts: artifacts:
paths: paths:
- bin/kernel.bin - bin/kernel.bin
isogen: isogen:
stage: isogen stage: isogen
script: ./compile_isogen.sh script:
- chmod +x ./compile_isogen.sh
- ./compile_isogen.sh
artifacts: artifacts:
paths: paths:
- ./Asuro.iso - ./Asuro.iso
finish: finish:
stage: finish stage: finish
script: ./compile_finish.sh "$CI_JOB_STATUS" script:
- chmod +x ./compile_finish.sh
- ./compile_finish.sh "$CI_JOB_STATUS"
artifacts: artifacts:
paths: paths:
- release/*.svg - release/*.svg