Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
eic_container
Merge requests
!647
feat: export master as tag master
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
feat: export master as tag master
wdconinc-master-patch-51091
into
master
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
feat: export master as tag master
Wouter Deconinck
requested to merge
wdconinc-master-patch-51091
into
master
Jul 11, 2023
Overview
0
Commits
2
Pipelines
0
Changes
1
0
0
Merge request reports
Compare
master
version 2
d03058ed
Jul 11, 2023
version 1
8b5be59f
Jul 11, 2023
master (base)
and
latest version
latest version
ee4d8f4f
2 commits,
Jul 11, 2023
version 2
d03058ed
2 commits,
Jul 11, 2023
version 1
8b5be59f
1 commit,
Jul 11, 2023
1 file
+
16
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
16
−
15
View file @ ee4d8f4f
Edit in single-file editor
Open in Web IDE
Show full file
@@ -27,19 +27,14 @@ variables:
## is this nightly or not?
NIGHTLY
:
## Add to tag
NIGHTLY_TAG
:
"
nightly"
## Additional options for docker build (e.g. --no-cache)
BUILD_OPTIONS
:
## Default version and tags
## - internal tag used for the CI. Also temporarily tagged
## on eicweb to communicate between jobs (removed in cleanup job)
## - export tag to public registries, optional secondary export tag
VERSION
:
"
${CI_COMMIT_REF_NAME}"
NIGHTLY_TAG
:
"
nightly"
TESTING_TAG
:
"
testing"
INTERNAL_TAG
:
"
${TESTING_TAG}-${VERSION}"
EXPORT_TAG
:
"
"
## Internal tag used for the CI
INTERNAL_TAG
:
"
${CI_COMMIT_REF_NAME}-${CI_PIPELINE_ID}"
stages
:
-
config
@@ -98,30 +93,36 @@ workflow:
## caching strategy for dispatch to multiple nodes and to avoid
## --> try this strategy: https://medium.com/titansoft-engineering/docker-build-cache-sharing-on-multi-hosts-with-buildkit-and-buildx-eb8f7005918e
## Default version and tags
## - internal tag used for the CI. Also temporarily tagged
## on eicweb to communicate between jobs (removed in cleanup job)
## - export tag to public registries, optional secondary export tag
version
:
stage
:
config
script
:
-
|
if [ "x${CI_PIPELINE_SOURCE}" = "xmerge_request_event" ]; then
VERSION="unstable-mr-${CI_MERGE_REQUEST_PROJECT_ID}-${CI_MERGE_REQUEST_IID}"
INTERNAL_TAG="${VERSION}"
NIGHTLY_TAG="${VERSION}-nightly"
EXPORT_TAG="${VERSION}"
elif [[ "$CI_COMMIT_TAG" =~ ^v[0-9.]+\.[0-9]+\.[0-9]+ ]]; then
VERSION="${CI_COMMIT_TAG:1}"
INTERNAL_TAG="stable-tag-${VERSION}"
EXPORT_TAG="${VERSION}"
elif [[ "$CI_COMMIT_BRANCH" = ^v[0-9.]+\.[0-9]+-stable ]]; then
elif [[ "$CI_COMMIT_BRANCH" =
~
^v[0-9.]+\.[0-9]+-stable ]]; then
VERSION="${CI_COMMIT_BRANCH:1}"
INTERNAL_TAG="stable-br-${VERSION}"
EXPORT_TAG="${VERSION}"
elif [[ "$CI_COMMIT_BRANCH" =~ ^v[0-9.]+\.[0-9]+-[a-z]+-stable ]]; then
VERSION="${CI_COMMIT_BRANCH:1}"
INTERNAL_TAG="stable-br-${VERSION}"
EXPORT_TAG="${VERSION}"
elif [[ "$CI_COMMIT_BRANCH" =~ ^master$ ]]; then
VERSION="${CI_COMMIT_BRANCH}"
EXPORT_TAG="${VERSION}"
else
VERSION="${CI_COMMIT_REF_NAME}-${CI_PIPELINE_ID}"
EXPORT_TAG=""
fi
echo "VERSION=$VERSION" >> build.env
echo "INTERNAL_TAG=$INTERNAL_TAG" >> build.env
echo "VERSION=$VERSION" >> build.env
echo "NIGHTLY_TAG=$NIGHTLY_TAG" >> build.env
echo "EXPORT_TAG=$EXPORT_TAG" >> build.env
cat build.env
Loading