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

View File

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