Melora Hugues
d23f79e961
All checks were successful
continuous-integration/drone/push Build is passing
Add more tests to the CI, including a docker build test, and add the generation and publication of a new docker image on master and tags
27 lines
378 B
YAML
27 lines
378 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: Tests
|
|
|
|
steps:
|
|
- name: Go tests
|
|
image: golang
|
|
commands:
|
|
- make -C tracker test
|
|
|
|
- name: Go build
|
|
image: golang
|
|
commands:
|
|
- make -C tracker build
|
|
|
|
- name: Docker build
|
|
image: thegeeklab/drone-docker-buildx
|
|
privileged: true
|
|
settings:
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
- tag
|