From 44acdbb47ebe962ddc6ce5d8ce9aa6e45e39bd75 Mon Sep 17 00:00:00 2001 From: Struchkov Mark Date: Sun, 1 Sep 2024 14:20:13 +0300 Subject: [PATCH] added cicd --- .drone.yml | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 000000000..206d1aca8 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,93 @@ +--- +kind: pipeline +type: docker +name: docker-build-and-push + +trigger: + branch: + - drone-v4 + +image_pull_secrets: + - DOCKER_AUTH + +services: + - name: docker + # https://hub.docker.com/r/library/docker + image: hub.docker.struchkov.dev/docker:27.1.2-dind-alpine3.20 + privileged: true + volumes: + - name: dockersock + path: /var/run + +volumes: + - name: dockersock + temp: {} + +steps: + - name: docker build an publish + # https://hub.docker.com/r/library/docker + image: docker.struchkov.dev/docker-buildx:latest + environment: + DOCKER_REGISTRY_TOKEN: + from_secret: DOCKER_REGISTRY_TOKEN + DOCKER_REGISTRY_USER: + from_secret: DOCKER_REGISTRY_USER + volumes: + - name: dockersock + path: /var/run + commands: + - sleep 15 + - echo "$DOCKER_REGISTRY_TOKEN" | docker login docker.struchkov.dev --username $DOCKER_REGISTRY_USER --password-stdin + - echo "$DOCKER_REGISTRY_TOKEN" | docker login hub.docker.struchkov.dev --username $DOCKER_REGISTRY_USER --password-stdin + - docker buildx create --use + - docker buildx build --push --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t "docker.struchkov.dev/quartz:develop" . +--- +kind: pipeline +type: docker +name: docker-build-and-push-release + +trigger: + ref: + - refs/tags/* + +image_pull_secrets: + - DOCKER_AUTH + +volumes: + - name: dockersock + temp: {} + +services: + - name: docker + # https://hub.docker.com/r/library/docker + image: hub.docker.struchkov.dev/docker:27.1.2-dind-alpine3.20 + privileged: true + volumes: + - name: dockersock + path: /var/run + +steps: + - name: docker build an publish + image: docker.struchkov.dev/docker-buildx:latest + environment: + DOCKER_REGISTRY_TOKEN: + from_secret: DOCKER_REGISTRY_TOKEN + DOCKER_REGISTRY_USER: + from_secret: DOCKER_REGISTRY_USER + volumes: + - name: dockersock + path: /var/run + commands: + - sleep 15 + - echo "$DOCKER_REGISTRY_TOKEN" | docker login docker.struchkov.dev --username $DOCKER_REGISTRY_USER --password-stdin + - echo "$DOCKER_REGISTRY_TOKEN" | docker login hub.docker.struchkov.dev --username $DOCKER_REGISTRY_USER --password-stdin + - docker buildx create --use + - docker buildx build --push --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t "docker.struchkov.dev/quartz:latest" -t "docker.struchkov.dev/quartz:$DRONE_TAG" . + + +# drone sign --save DockerFiles/quartz +--- +kind: signature +hmac: b6270103d61da4625dd9234e4b57d7d876aef5edcbe15d0a307ac9537a430ff1 + +... \ No newline at end of file