ldap/.gitlab-ci.yml

32 lines
694 B
YAML
Raw Normal View History

2017-05-25 13:29:15 +00:00
stages:
- build
- build-manifest
2017-05-25 13:29:15 +00:00
variables:
2017-07-22 22:36:45 +00:00
VERSION: latest
DOCKER_HOST: tcp://docker:2375
2023-03-31 13:39:57 +00:00
VERSIONARCH: ${VERSION}-${ARCH}
2017-05-25 13:29:15 +00:00
cache:
key: ${CI_JOB_NAME_SLUG}-${CI_COMMIT_REF_SLUG}
paths:
- build-cache
2023-03-31 13:39:57 +00:00
image: docker:latest
2017-05-25 13:29:15 +00:00
services:
2023-03-31 13:39:57 +00:00
- docker:dind
2017-05-25 13:29:15 +00:00
before_script:
2023-03-31 13:39:57 +00:00
- if [ ! -d build-cache ]; then mkdir build-cache; fi
- sed -i -e s'/https/http/' /etc/apk/repositories
2023-03-31 13:39:57 +00:00
- HTTP_PROXY=http://proxy.dege.lan:3128 apk add git curl
- docker info && docker version
# env|sort
- echo "$CI_JOB_TOKEN" | docker login -u "$CI_REGISTRY_USER" "$CI_REGISTRY" --password-stdin
2017-05-25 13:29:15 +00:00
2023-03-31 13:39:57 +00:00
include:
- .gitlab-docker-x86_64.yml
# .gitlab-docker-armv7l.yml
# .gitlab-docker-arm64.yml
- .gitlab-docker-manifest.yml