This repository has been archived on 2022-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
KassouBot/.gitlab-ci.yml

44 lines
1.2 KiB
YAML
Raw Normal View History

2021-07-28 01:08:51 +02:00
###############################################################
# Setting I use for cleaning up image tags #
2021-07-29 01:11:59 +02:00
# - Running cleanup every week #
# - Keeping 1 tag per image name matching : (?:v.\d+|dev) #
2021-07-28 01:08:51 +02:00
# - Removing tags older than 7 days matching the default : .* #
###############################################################
image: docker:stable
stages:
- build
- push
services:
- docker:dind
before_script:
- echo -n $CI_JOB_TOKEN | docker login -u gitlab-ci-token --password-stdin $CI_REGISTRY
Build:
stage: build
script:
2021-08-06 12:48:09 +02:00
- docker pull $CI_REGISTRY_IMAGE:dev-wavelink || true
2021-07-28 01:08:51 +02:00
- >
docker build
--pull
--build-arg VCS_REF=$CI_COMMIT_SHA
--build-arg VCS_URL=$CI_PROJECT_URL
2021-08-06 12:48:09 +02:00
--cache-from $CI_REGISTRY_IMAGE:dev-wavelink
2021-07-28 01:08:51 +02:00
--tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
.
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
2021-08-06 12:48:09 +02:00
Push dev-wavelink:
2021-07-28 01:08:51 +02:00
variables:
GIT_STRATEGY: none
stage: push
only:
2021-08-06 12:48:09 +02:00
- dev-wavelink
2021-07-28 01:08:51 +02:00
script:
- docker pull $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
2021-08-06 15:53:49 +02:00
- docker tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA $CI_REGISTRY_IMAGE:dev-wavelink
- docker push $CI_REGISTRY_IMAGE:dev-wavelink