Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Docker
base
Merge requests
!39
Update CI to use new components [bookworm]
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update CI to use new components [bookworm]
duncanmmacleod/docker-igwn-base:ci-components-bookworm
into
bookworm
Overview
0
Commits
1
Pipelines
1
Changes
3
Merged
Duncan Macleod
requested to merge
duncanmmacleod/docker-igwn-base:ci-components-bookworm
into
bookworm
9 months ago
Overview
0
Commits
1
Pipelines
1
Changes
3
Expand
This MR implements
Update bookworm branch to new CI/CD component (#18 - closed)
.
0
0
Merge request reports
Compare
bookworm
bookworm (base)
and
latest version
latest version
3cef1e7b
1 commit,
9 months ago
3 files
+
21
−
95
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
.gitlab/ci/build.yml deleted
100644 → 0
+
0
−
58
Options
# ---------------------------
# Build workflow
# ---------------------------
include
:
# https://computing.docs.ligo.org/gitlab-ci-templates/
-
project
:
computing/gitlab-ci-templates
# https://computing.docs.ligo.org/gitlab-ci-templates/docker/
file
:
docker.yml
# https://docs.gitlab.com/ee/user/application_security/container_scanning/
-
template
:
Security/Container-Scanning.gitlab-ci.yml
# -- build the image --------
build
:
stage
:
build
extends
:
# https://computing.docs.ligo.org/gitlab-ci-templates/docker/#.docker:build
-
.docker:build
variables
:
# use the branch name as the tag
CI_REGISTRY_TAG
:
'
$CI_COMMIT_REF_SLUG'
# -- scan the image ---------
# check the image for vulnerabilities, see
# https://docs.gitlab.com/ee/user/application_security/container_scanning/
container_scanning
:
stage
:
scan
needs
:
[
build
]
variables
:
DOCKER_IMAGE
:
'
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG'
# -- push the image ---------
.push
:
stage
:
deploy
needs
:
[
build
]
variables
:
# pull the branch image
PULL_IMAGE
:
"
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
# push to igwn namespace
PUSH_IMAGE
:
"
igwn/$CI_PROJECT_NAME:$CI_COMMIT_REF_SLUG"
rules
:
# only run on pushes to the upstream repo (not on forks)
-
if
:
'
$CI_PROJECT_NAMESPACE
==
"docker"
&&
$CI_COMMIT_BRANCH'
push:docker_io
:
extends
:
# https://computing.docs.ligo.org/gitlab-ci-templates/docker/#.docker:push:docker_io
-
.docker:push:docker_io
-
.push
push:quay_io
:
extends
:
# https://computing.docs.ligo.org/gitlab-ci-templates/docker/#.docker:push:quay_io
-
.docker:push:quay_io
-
.push
Loading