From 003b265e56a708776d933a1ad63817b400b476bc Mon Sep 17 00:00:00 2001 From: Simone Cottini Date: Wed, 29 Nov 2023 11:08:12 +0100 Subject: [PATCH] Remove drone.yml --- .drone.yml | 269 ----------------------------------------------------- 1 file changed, 269 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index e513e54..0000000 --- a/.drone.yml +++ /dev/null @@ -1,269 +0,0 @@ ---- -kind: pipeline -name: default - -platform: - os: linux - arch: amd64 - -clone: - disable: true - -steps: -- name: git-clone - image: public.ecr.aws/prima/drone-git:1.3-3 - environment: - PLUGIN_DEPTH: 5 - -- name: cache-restore - image: public.ecr.aws/prima/drone-tools:1.21.3 - commands: - - . /etc/profile.d/ecs-credentials-endpoint - - cache-restore - environment: - BUCKET_NAME: prima-ci-cache - volumes: - - name: ecs - path: /etc/profile.d/ecs-credentials-endpoint - - name: docker - path: /var/run/docker.sock - depends_on: - - git-clone - -- name: check-secrets - image: public.ecr.aws/prima/drone-tools:1.21.3 - commands: - - . /etc/profile.d/ecs-credentials-endpoint - - check-secrets-grants - volumes: - - name: ecs - path: /etc/profile.d/ecs-credentials-endpoint - depends_on: - - git-clone - -- name: check-public-docker-images - image: public.ecr.aws/prima/drone-tools:1.21.3 - commands: - - check-public-docker-images - depends_on: - - git-clone - -- name: build-image - image: public.ecr.aws/prima/drone-tools:1.21.3 - commands: - - sed -i 's/USER app/USER root/g' ./Dockerfile - - docker build -t prima/bridge.rs-ci:${DRONE_COMMIT} ./ - volumes: - - name: docker - path: /var/run/docker.sock - depends_on: - - cache-restore - -- name: cargo-deps - image: prima/bridge.rs-ci:${DRONE_COMMIT} - commands: - - cargo fetch - environment: - CARGO_HOME: /drone/src/.cargo - depends_on: - - build-image - -- name: cargo-format - image: prima/bridge.rs-ci:${DRONE_COMMIT} - commands: - - cargo make --profile drone format-ci - environment: - CARGO_HOME: /drone/src/.cargo - depends_on: - - cargo-deps - -- name: cargo-clippy-ci - image: prima/bridge.rs-ci:${DRONE_COMMIT} - commands: - - cargo make --profile drone clippy-ci - environment: - BUILD_ENV: dev - CARGO_HOME: /drone/src/.cargo - depends_on: - - cargo-format - -- name: cargo-test - image: prima/bridge.rs-ci:${DRONE_COMMIT} - commands: - - cargo make --profile drone test - environment: - BUILD_ENV: dev - CARGO_HOME: /drone/src/.cargo - CARGO_HTTP_CAINFO: "" - depends_on: - - cargo-clippy-ci - -- name: cargo-build - image: prima/bridge.rs-ci:${DRONE_COMMIT} - commands: - - cargo make --profile drone build-ci - environment: - BUILD_ENV: dev - CARGO_HOME: /drone/src/.cargo - when: - branch: - exclude: - - master - depends_on: - - cargo-test - -- name: cache-cleanup - image: prima/bridge.rs-ci:${DRONE_COMMIT} - commands: - - cargo make --profile drone cache-cleanup - when: - branch: - - master - depends_on: - - cargo-build - - cargo-format - - cargo-clippy-ci - - cargo-test - -- name: cache-save - image: public.ecr.aws/prima/drone-tools:1.21.3 - commands: - - . /etc/profile.d/ecs-credentials-endpoint - - cache-save target - environment: - BUCKET_NAME: prima-ci-cache - volumes: - - name: ecs - path: /etc/profile.d/ecs-credentials-endpoint - - name: docker - path: /var/run/docker.sock - when: - branch: - - master - depends_on: - - cache-cleanup - -volumes: -- name: docker - host: - path: /var/run/docker.sock -- name: ecs - host: - path: /etc/profile.d/ecs-credentials-endpoint - -trigger: - event: - - push - ---- -kind: pipeline -name: build-production - -platform: - os: linux - arch: amd64 - -clone: - disable: true - -steps: -- name: git-clone - image: public.ecr.aws/prima/drone-git:1.3-3 - environment: - PLUGIN_DEPTH: 5 - -- name: cache-restore - image: public.ecr.aws/prima/drone-tools:1.21.3 - commands: - - . /etc/profile.d/ecs-credentials-endpoint - - cache-restore - environment: - BUCKET_NAME: prima-ci-cache - volumes: - - name: ecs - path: /etc/profile.d/ecs-credentials-endpoint - - name: docker - path: /var/run/docker.sock - depends_on: - - git-clone - -- name: build-image - image: public.ecr.aws/prima/drone-tools:1.21.3 - commands: - - sed -i 's/USER app/USER root/g' ./Dockerfile - - docker build -t prima/bridge.rs-ci:${DRONE_COMMIT} ./ - volumes: - - name: docker - path: /var/run/docker.sock - depends_on: - - cache-restore - -- name: build-production - image: prima/bridge.rs-ci:${DRONE_COMMIT} - commands: - - . /etc/profile.d/ecs-credentials-endpoint - - ./deploy/build production - environment: - CARGO_AUTH_KEY: - from_secret: cargo_auth_key - volumes: - - name: ecs - path: /etc/profile.d/ecs-credentials-endpoint - depends_on: - - build-image - -volumes: -- name: docker - host: - path: /var/run/docker.sock -- name: ecs - host: - path: /etc/profile.d/ecs-credentials-endpoint - -trigger: - event: - - tag - ref: - - refs/tags/*.*.* - ---- -kind: pipeline -name: email-failure - -platform: - os: linux - arch: amd64 - -clone: - disable: true - -steps: -- name: email-failure - image: public.ecr.aws/prima/drone-email - settings: - from: drone@prima.it - host: email-smtp.eu-west-1.amazonaws.com - environment: - PLUGIN_PASSWORD: - from_secret: email_password - PLUGIN_USERNAME: - from_secret: email_username - -trigger: - status: - - failure - target: - exclude: - - qa-stack - - qa-it - - qa - -depends_on: -- default -- build-production - ---- -kind: signature -hmac: cec8a64e430b6ea8917086556797fb01c5189aaebc03f9d0a049768685ed6df8 - -...