Files
unrar-arm64/.gitlab-ci.yml
T
cloudix_mcp_server e6db768a3d Disable ARM64 CI builds (no more ARM builders)
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.
2026-06-10 18:51:26 -04:00

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