summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2023-03-13 12:51:19 +0100
committerJustus Winter <justus@sequoia-pgp.org>2023-03-13 12:51:19 +0100
commitb9629b523ceec5fc51cbc6b0ba48302ff070eea1 (patch)
treed5ff60891b341af83ee8424145b157267f75086b /.gitlab-ci.yml
parent9aa0ff88061fb3bcec4927aaff09a43657f4f07d (diff)
ci: Drop job pushing sq to Gitlab's Docker Registry.
- This has to move to sq's new repository.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8d192704..cef35204 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -381,39 +381,6 @@ windows-msvc32-cng:
variables:
CFLAGS: "" # Silence some C warnings when compiling with MSVC
-docker-build-push:
- # Official docker image.
- image: docker:stable
- stage: build
- services:
- - docker:dind
- tags:
- - docker
- - self-hosted
- before_script:
- - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- script:
- - >
- docker build
- --no-cache
- --target sq
- --tag "$IMAGE":latest
- .
- # smoke test
- - docker run "$IMAGE":latest --help
- - docker push "$IMAGE":latest
- after_script: []
- only:
- refs:
- - /docker/i # refs containing 'docker' keyword
- - tags
- - web
- - schedules
- variables:
- CI_REGISTRY: "registry.gitlab.com"
- IMAGE: "$CI_REGISTRY/sequoia-pgp/sequoia"
- DOCKER_HOST: tcp://docker:2376
-
variables:
DEBIAN_FRONTEND: noninteractive
CARGO_HOME: $CI_PROJECT_DIR/../cargo