Skip to content
GitLab
Explore
Sign in
Commits on Source (1)
gitlab-ci-template: fix missing arm32 job
· 9a689595
Alexander Wellbrock
authored
Aug 10, 2022
9a689595
Hide whitespace changes
Inline
Side-by-side
gitlab-ci-template.yml
View file @
9a689595
...
...
@@ -61,6 +61,15 @@ container-build-aarch64:
rules
:
-
if
:
'
$CI_CONTAINER_BUILD_ARCHS
=~
/:?aarch64:?/
&&
$CI_PIPELINE_SOURCE
!=
"merge_request_event"'
container-build-arm32
:
extends
:
.container-build
variables
:
CI_REGISTRY_IMAGE_ARCH
:
arm
tags
:
-
arm32
rules
:
-
if
:
'
$CI_CONTAINER_BUILD_ARCHS
=~
/:?arm32:?/
&&
$CI_PIPELINE_SOURCE
!=
"merge_request_event"'
container-tagging
:
stage
:
tag
inherit
:
...
...