Add Woodpecker CI pipeline

This commit is contained in:
2024-08-21 21:44:58 +03:00
parent 9a4ee7f920
commit a7c3bc6cee
2 changed files with 58 additions and 0 deletions

28
.woodpecker/build.yaml Normal file
View File

@@ -0,0 +1,28 @@
---
matrix:
ARCH:
- amd64
- arm64
steps:
- name: build
image: woodpeckerci/plugin-kaniko
backend_options:
kubernetes:
nodeSelector:
kubernetes.io/arch: ${ARCH}
tolerations:
- key: arch
operator: Equal
value: ${ARCH}
effect: NoSchedule
settings:
repo: ${CI_REPO}
registry: harbor.codemowers.eu
tags: latest-${ARCH}
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
- branch: master