From 93df451c6755996928769967fd7ca13e7e2e2527 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 7 Oct 2021 18:50:35 -0700 Subject: [PATCH] Remove duplicate Drone manifest --- .drone.yml | 76 ------------------------------------------------------ 1 file changed, 76 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index c923305..0000000 --- a/.drone.yml +++ /dev/null @@ -1,76 +0,0 @@ ---- -kind: pipeline -name: build - -platform: - os: linux - arch: amd64 - -steps: -- name: set image tags - image: alpine - commands: - - ./write-tags.sh $VERSION contrib > .tags - - "# Will build the following tags:" - - cat .tags - environment: - VERSION: 7.2.10-r2 - -- name: build docker image - image: ovdnet/drone-docker - settings: - build_args: - - ATHEME_VERSION=7.2.10-r2 - password: - from_secret: docker_password - repo: ovdnet/atheme - username: - from_secret: docker_user - volumes: - - name: docker-socket - path: /var/run/docker.sock - -volumes: -- name: docker-socket - host: - path: /var/run/docker.sock - ---- -kind: pipeline -name: build-contrib - -platform: - os: linux - arch: amd64 - -steps: -- name: set image tags - image: alpine - commands: - - ./write-tags.sh $VERSION contrib > .tags - - "# Will build the following tags:" - - cat .tags - environment: - VERSION: 7.2.10-r2 - -- name: build docker image - image: ovdnet/drone-docker - settings: - build_args: - - ATHEME_VERSION=7.2.10-r2 - - BUILD_CONTRIB_MODULES=true - password: - from_secret: docker_password - repo: ovdnet/atheme - username: - from_secret: docker_user - volumes: - - name: docker-socket - path: /var/run/docker.sock - -volumes: -- name: docker-socket - host: - path: /var/run/docker.sock - -...