From 77759e5e90ae8a135c2d17e728edb0b4af124304 Mon Sep 17 00:00:00 2001 From: Mark McGarry Date: Mon, 8 Jul 2024 17:04:08 +0100 Subject: [PATCH] remove drone.yml --- .drone.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index b6f33754..00000000 --- a/.drone.yml +++ /dev/null @@ -1,32 +0,0 @@ -workspace: - base: /go - path: src/github.com/uswitch/aws-sigv4-proxy - -pipeline: - test: - image: golang:1.15 - commands: - - go test -v -cover $(shell go list ./... | grep -v /vendor) - - build: - image: golang:1.15 - commands: - - CGO_ENABLED=0 GOOS=linux go build -o /go/bin/aws-sigv4-proxy - - docker-latest: - image: plugins/docker - repo: registry.usw.co/aws-sigv4-proxy - tags: - - latest - - ${DRONE_COMMIT_SHA} - when: - event: push - branch: master - - docker-tagged: - image: plugins/docker - repo: registry.usw.co/aws-sigv4-proxy - auto_tag: true - when: - event: tag - branch: master