No functional changes, just cosmetic

This commit is contained in:
Deon George 2023-02-03 17:32:46 +11:00
parent fc2fef0edc
commit 1fe8c54505
4 changed files with 31 additions and 34 deletions

View File

@ -1,6 +1,6 @@
stages:
- build
- build-manifest
- build
- build-manifest
variables:
DOCKER_HOST: tcp://docker:2375
@ -27,7 +27,7 @@ before_script:
# env|sort
include:
- .gitlab-docker-x86_64.yml
- .gitlab-docker-armv7l.yml
- .gitlab-docker-arm64.yml
- .gitlab-docker-manifest.yml
- .gitlab-docker-x86_64.yml
- .gitlab-docker-armv7l.yml
- .gitlab-docker-arm64.yml
- .gitlab-docker-manifest.yml

View File

@ -2,7 +2,6 @@ arm64:build:
variables:
ARCH: arm64
stage: build
image: docker:latest
script:
- if [ -f init ]; then chmod 500 init; fi
- ([ -z "$REFRESH" -a -f docker/${CI_COMMIT_REF_SLUG} ]) && docker load < docker/${CI_COMMIT_REF_SLUG} || true

View File

@ -2,7 +2,6 @@ armv7l:build:
variables:
ARCH: armv7l
stage: build
image: docker:latest
script:
- if [ -f init ]; then chmod 500 init; fi
- ([ -z "$REFRESH" -a -f docker/${CI_COMMIT_REF_SLUG} ]) && docker load < docker/${CI_COMMIT_REF_SLUG} || true

View File

@ -2,7 +2,6 @@ x86_64:build:
variables:
ARCH: x86_64
stage: build
image: docker:latest
script:
- if [ -f init ]; then chmod 500 init; fi
- ([ -z "$REFRESH" -a -f docker/${CI_COMMIT_REF_SLUG} ]) && docker load < docker/${CI_COMMIT_REF_SLUG} || true