debian-mirror-gitlab/lib/gitlab/ci/templates/Jobs/Build.gitlab-ci.yml

22 lines
780 B
YAML
Raw Normal View History

2019-07-07 11:18:12 +05:30
build:
stage: build
image: "registry.gitlab.com/gitlab-org/cluster-integration/auto-build-image/master:stable"
2019-09-30 21:07:59 +05:30
variables:
DOCKER_TLS_CERTDIR: ""
2019-07-07 11:18:12 +05:30
services:
2020-03-13 15:44:24 +05:30
# pin to a known working version until https://gitlab.com/gitlab-org/gitlab-runner/issues/6697 is fixed
- docker:19.03.5-dind
2019-07-07 11:18:12 +05:30
script:
- |
if [[ -z "$CI_COMMIT_TAG" ]]; then
export CI_APPLICATION_REPOSITORY=${CI_APPLICATION_REPOSITORY:-$CI_REGISTRY_IMAGE/$CI_COMMIT_REF_SLUG}
export CI_APPLICATION_TAG=${CI_APPLICATION_TAG:-$CI_COMMIT_SHA}
else
export CI_APPLICATION_REPOSITORY=${CI_APPLICATION_REPOSITORY:-$CI_REGISTRY_IMAGE}
export CI_APPLICATION_TAG=${CI_APPLICATION_TAG:-$CI_COMMIT_TAG}
fi
- /build/build.sh
only:
- branches
- tags