public-ip-tracker/.drone.yml
Melora Hugues 056a3c24f0
Some checks failed
continuous-integration/drone/tag Build is failing
continuous-integration/drone/push Build is failing
Improve CI
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
2023-02-02 20:44:06 +01:00

72 lines
No EOL
1.2 KiB
YAML

---
# Test building the code and docker image
kind: pipeline
type: docker
name: test-build
steps:
- name: go-test
image: golang
commands:
- make -C tracker test
depends_on:
- 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:
event:
- 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
...