flucky/.drone.yml

41 lines
723 B
YAML
Raw Normal View History

2020-06-10 19:16:50 +00:00
kind: pipeline
type: docker
name: amd64
steps:
- name: build-linux-amd64
image: docker.io/volkerraschek/build-image:latest
commands:
2021-04-10 14:06:47 +00:00
- make
2020-06-10 19:16:50 +00:00
when:
event:
- push
- pull_request
- tag
2021-05-16 21:02:46 +00:00
# - name: golangci-lint
# image: docker.io/golangci/golangci-lint:v1.40.1-alpine
# commands:
# - golangci-lint run --concurrency $(nproc --ignore=1)
# when:
# event:
# - push
# - pull_request
# - name: gosec
# image: docker.io/securego/gosec:v2.8.0
# when:
# event:
# - push
# - pull_request
2020-06-10 19:26:22 +00:00
# steps:
# - name: test-unit
# image: docker.io/volkerraschek/build-image:latest
# commands:
# - make test/unit
# when:
# event:
# - push
# - pull_request
# - tag