Files
firewall_containers/.drone.yml
gyurix 7c6009bfa5
continuous-integration/drone/push Build is failing
updated drone file node selector
2026-06-12 09:09:17 +02:00

71 lines
1.5 KiB
YAML

---
kind: pipeline
type: kubernetes
name: default
node_selector:
zone: dev
trigger:
branch:
- master
event:
- push
workspace:
path: /drone/src/network-go
steps:
- name: test
image: docker.io/library/golang:1.26-alpine
pull: always
commands:
- apk add --no-cache git
- cd /drone/src/network-go
- go mod download
- go test ./... -count=1 -v
- name: build
image: docker.io/library/golang:1.26-alpine
pull: always
commands:
- apk add --no-cache git
- cd /drone/src/network-go
- go build -o network-go -ldflags="-s -w" .
- name: build-multiarch
image: docker.io/owncloudci/drone-docker-buildx:4
privileged: true
settings:
cache-from:
- registry.dev.format.hu/network-go
registry: registry.dev.format.hu
repo: registry.dev.format.hu/network-go
tags: latest
dockerfile: Dockerfile
context: .
username:
from_secret: dev-hu-registry-username
password:
from_secret: dev-hu-registry-password
platforms:
- linux/amd64
- linux/arm64
- name: push-to-dockerhub
image: docker.io/owncloudci/drone-docker-buildx:4
privileged: true
settings:
cache-from:
- safebox/network-go
repo: safebox/network-go
tags: latest
dockerfile: Dockerfile
context: .
username:
from_secret: dockerhub-username
password:
from_secret: dockerhub-password
platforms:
- linux/amd64
- linux/arm64