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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
eic_container
Commits
13ff9eac
Commit
13ff9eac
authored
1 year ago
by
Wouter Deconinck
Browse files
Options
Downloads
Patches
Plain Diff
feat: generalize FORCE_NOCACHE to BUILD_OPTIONS
parent
c12b63ec
No related branches found
No related tags found
1 merge request
!627
feat: generalize FORCE_NOCACHE to BUILD_OPTIONS
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+9
-16
9 additions, 16 deletions
.gitlab-ci.yml
with
9 additions
and
16 deletions
.gitlab-ci.yml
+
9
−
16
View file @
13ff9eac
...
...
@@ -28,8 +28,8 @@ variables:
## is this nightly or not?
NIGHTLY
:
##
Force a rebuild without using
cache
FORCE_NOCACHE
:
0
##
Additional options for docker build (e.g. --no-
cache
)
BUILD_OPTIONS
:
## Default version and tags
## - internal tag used for the CI. Also temporarily tagged
...
...
@@ -194,7 +194,7 @@ base:
needs
:
-
version
script
:
-
docker buildx build --push
-
docker buildx build --push
${BUILD_OPTIONS}
--tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${BUILD_IMAGE}:${INTERNAL_TAG}
${EXPORT_TAG:+
${CI_PUSH:+--tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${BUILD_IMAGE}:${EXPORT_TAG}}
...
...
@@ -225,20 +225,12 @@ jug_dev:default:
-
version
-
base
script
:
## Disable caching
-
CACHE_FLAG=""
-
|
if [ $FORCE_NOCACHE = 1 ]; then
echo "FORCE_NOCACHE set"
export CACHE_FLAG="--no-cache"
fi
## Setup mirrors.yaml with rw mirror secrets
-
cat mirrors.yaml.in | envsubst > mirrors.yaml
## Build targets
-
source spack.sh ;
source eic-spack.sh ;
docker buildx build --push
${CACHE_FLAG}
source eic-spack.sh ;
docker buildx build --push ${BUILD_OPTIONS}
--tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${BUILD_IMAGE}:${INTERNAL_TAG}${suffix}
${EXPORT_TAG:+
${CI_PUSH:+--tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${BUILD_IMAGE}:${EXPORT_TAG}${suffix}}
...
...
@@ -279,7 +271,7 @@ jug_xl:default:
-
version
-
jug_dev:default
script
:
-
docker buildx build --push
-
docker buildx build --push
${BUILD_OPTIONS}
--tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${BUILD_IMAGE}:${INTERNAL_TAG}
${EXPORT_TAG:+
${CI_PUSH:+--tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${BUILD_IMAGE}:${EXPORT_TAG}}
...
...
@@ -324,7 +316,7 @@ jug_xl:nightly:
if [ "$CI_COMMIT_BRANCH" == "master" ]; then
PUSH_NIGHTLY_WITH_DATE="1"
fi
-
docker buildx build --push
-
docker buildx build --push
${BUILD_OPTIONS}
--tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${BUILD_IMAGE}:${INTERNAL_TAG}
${NIGHTLY:+
${CI_PUSH:+--tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${BUILD_IMAGE}:${NIGHTLY_TAG}}
...
...
@@ -363,7 +355,8 @@ jug_xl:feature:
DETECTOR_BRANCH
:
-
main
script
:
-
docker buildx build --load --tag ${CI_REGISTRY_IMAGE}/${BUILD_IMAGE}:${INTERNAL_TAG}-${DETECTOR}-${DETECTOR_BRANCH}
-
docker buildx build --load ${BUILD_OPTIONS}
--tag ${CI_REGISTRY_IMAGE}/${BUILD_IMAGE}:${INTERNAL_TAG}-${DETECTOR}-${DETECTOR_BRANCH}
--file containers/jug/feature.Dockerfile
--build-arg INTERNAL_TAG=${NIGHTLY_TAG}
--build-arg DETECTOR=${DETECTOR}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment