diff options
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e8131c6..d4c9eb9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,9 @@ variables: GIT_DEPTH: "1000" -build_default: +# Note: version in job name to ensure that other version artifacts can still be accessed +# TODO: put name and image above into a variable. +build_debian11_bullseye: stage: build script: - echo "$CI_COMMIT_SHA" > mplint-version.txt @@ -30,6 +32,7 @@ build_default: - echo jobid:" $CI_JOB_ID" >> mplint-build-info.txt - echo title:" $CI_COMMIT_TITLE" >> mplint-build-info.txt - echo pipeline:" $CI_PIPELINE_URL" >> mplint-build-info.txt + - echo image:" $CI_JOB_IMAGE" >> mplint-build-info.txt - cat mplint-version.txt - cat mplint-build-info.txt - autoreconf -i @@ -44,7 +47,8 @@ build_default: untracked: true expire_in: 3 days -package_default: +# This step exists to make a smaller package for faster download in MV CI. +package_debian11_bullseye: stage: package script: # To flatten the archive |