Revert "ci: moves drone config to build dir"
All checks were successful
continuous-integration/drone/push Build is passing

This reverts commit 62e1ee822a.
This commit is contained in:
Marvin Steadfast 2021-05-10 12:47:48 +02:00
parent 62e1ee822a
commit 9c9ed4e94a
2 changed files with 52 additions and 53 deletions

View File

@ -1 +0,0 @@
build/ci/drone.yml

52
.drone.yml Normal file
View File

@ -0,0 +1,52 @@
---
kind: pipeline
name: default
steps:
- name: tags
image: alpine/git
commands:
- git fetch --tags
- name: lint
image: golangci/golangci-lint:latest
commands:
- make install-tools
- make lint
depends_on:
- tags
- name: test
image: golang:latest
commands:
- make test
depends_on:
- tags
- name: build
image: goreleaser/goreleaser:v0.162.0
commands:
- make build
depends_on:
- tags
- lint
- test
when:
event:
exclude:
- tag
- name: release
image: goreleaser/goreleaser:v0.162.0
environment:
GITHUB_TOKEN:
from_secret: github_token
commands:
- goreleaser release --rm-dist
depends_on:
- tags
- lint
- test
when:
event:
- tag

View File

@ -1,52 +0,0 @@
---
kind: pipeline
name: default
steps:
- name: tags
image: alpine/git
commands:
- git fetch --tags
- name: lint
image: golangci/golangci-lint:latest
commands:
- make install-tools
- make lint
depends_on:
- tags
- name: test
image: golang:latest
commands:
- make test
depends_on:
- tags
- name: build
image: goreleaser/goreleaser:v0.162.0
commands:
- make build
depends_on:
- tags
- lint
- test
when:
event:
exclude:
- tag
- name: release
image: goreleaser/goreleaser:v0.162.0
environment:
GITHUB_TOKEN:
from_secret: github_token
commands:
- goreleaser release --rm-dist
depends_on:
- tags
- lint
- test
when:
event:
- tag