e6db768a3d
Comment out build jobs rather than deleting them — the ARM64 builders are gone and there's no real use for fresh builds anymore. Keeping the config visible in case a builder comes back later.
28 lines
541 B
YAML
28 lines
541 B
YAML
image: docker:latest
|
|
|
|
services:
|
|
- docker:dind
|
|
|
|
before_script:
|
|
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
|
|
|
|
#build-master:
|
|
# stage: build
|
|
# tags:
|
|
# - arm64
|
|
# script:
|
|
# - docker build --pull -t "$CI_REGISTRY_IMAGE" .
|
|
# - docker push "$CI_REGISTRY_IMAGE"
|
|
# only:
|
|
# - master
|
|
|
|
#build:
|
|
# stage: build
|
|
# tags:
|
|
# - arm64
|
|
# script:
|
|
# - docker build --pull -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" .
|
|
# - docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
|
|
# except:
|
|
# - master
|