From 3dc65d56850def6c4db3aa8d08961122e0e4dcfd Mon Sep 17 00:00:00 2001 From: Kieron Morris Date: Sat, 26 Jun 2021 03:05:54 +0100 Subject: [PATCH] Another attempt to get the pipeline to work... --- .gitlab-ci.yml | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 550165cb..7acf6eff 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,7 @@ .after_script: - script: ./compile_check.sh "$CI_JOB_STATUS" + script: + - chmod +x ./compile_check.sh + - ./compile_check.sh "$CI_JOB_STATUS" artifacts: paths: - release/*.svg @@ -13,42 +15,50 @@ stages: - isogen - finish -chmod_step: - stage: chmod - script: ls && chmod +x ./*.sh - compile_stub: stage: compile_stub - script: ls && ./compile_stub.sh + script: + - chmod +x ./compile_stub.sh + - ./compile_stub.sh vergen: stage: vergen - script: ./compile_vergen.sh + script: + - chmod +x ./compile_vergen.sh + - ./compile_vergen.sh artifacts: paths: - release/*.svg compile_sources: stage: compile_sources - script: ./compile_sources.sh + script: + - chmod +x ./compile_sources.sh + - ./compile_sources.sh link: stage: link - script: ./compile_link.sh + script: + - chmod +x ./compile_link.sh + - ./compile_link.sh artifacts: paths: - bin/kernel.bin isogen: stage: isogen - script: ./compile_isogen.sh + script: + - chmod +x ./compile_isogen.sh + - ./compile_isogen.sh artifacts: paths: - ./Asuro.iso finish: stage: finish - script: ./compile_finish.sh "$CI_JOB_STATUS" + script: + - chmod +x ./compile_finish.sh + - ./compile_finish.sh "$CI_JOB_STATUS" artifacts: paths: - release/*.svg \ No newline at end of file