Improve CI
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error

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
This commit is contained in:
Melora Hugues 2023-02-02 20:20:43 +01:00
parent 2abc08d582
commit f86379253e

View file

@ -1,16 +1,68 @@
# Test building the code and docker image
kind: pipeline kind: pipeline
type: docker type: docker
name: Tests name: test-build
steps: steps:
- name: test - name: go-test
image: golang image: golang
commands: commands:
- cd tracker - make -C tracker test
- make build depends_on:
- make test
- name: go-build
image: golang
commands:
- make -C tracker build
depends_on:
- name: docker-build
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
repo: git.faercol.me/faercol/public-ip-tracker
tags: latest
platforms:
- linux/amd64
- linux/arm64
depends_on:
- name: docker-push
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
repo: git.faercol.me/faercol/public-ip-tracker
registry: git.faercol.me
tags: latest
username: faercol
password:
from_secret: GIT_PASSWORD
depends_on:
- go-test
- go-build
- docker-build
trigger: trigger:
event: event:
- push - push
# On a tag, only build the related docker image
kind: pipeline
type: docker
name: Release
steps:
- name: docker-push-tag
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
registry: git.faercol.me
repo: git.faercol.me/faercol/public-ip-tracker
auto_tag: true
username: faercol
password:
from_secret: GIT_PASSWORD
trigger:
event:
- tag - tag