125 lines
1.6 KiB
YAML
125 lines
1.6 KiB
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: build
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
node:
|
|
location: europe
|
|
|
|
workspace:
|
|
path: /go/src
|
|
|
|
services:
|
|
- name: database
|
|
image: postgres:latest
|
|
pull: always
|
|
commands:
|
|
- "docker-entrypoint.sh postgres"
|
|
|
|
clone:
|
|
depth: 50
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang:1.18
|
|
pull: always
|
|
environment:
|
|
- CGO=0
|
|
commands:
|
|
- go test ./...
|
|
when:
|
|
event:
|
|
- push
|
|
- pull_request
|
|
branch:
|
|
exclude:
|
|
- main
|
|
- release/*
|
|
|
|
- name: build
|
|
image: golang:1.18
|
|
pull: never
|
|
environment:
|
|
CGO: 0
|
|
GOOS: linux
|
|
GOARCH: amd64
|
|
commands:
|
|
- go build
|
|
|
|
- name: docker
|
|
image: plugin/docker
|
|
volumes:
|
|
- name: cache
|
|
path: /var/lib/docker
|
|
settings:
|
|
repo: org/simple
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
|
|
volumes:
|
|
- name: cache
|
|
host:
|
|
path: /var/lib/cache
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: deploy
|
|
|
|
depends_on:
|
|
- build
|
|
|
|
trigger:
|
|
status:
|
|
- success
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
steps:
|
|
- name: deploy
|
|
image: alpine:latest
|
|
pull: if-not-exists
|
|
detach: true
|
|
privileged: true
|
|
environment:
|
|
PASSWORD:
|
|
from_secret: password
|
|
commands:
|
|
- echo "Deploy $${DRONE_COMMIT_SHA:0:8}"
|
|
when:
|
|
status: [ success, failure ]
|
|
instance:
|
|
- stage.woodpecker.company.com
|
|
target:
|
|
- staging
|
|
event: tag
|
|
refs:
|
|
- refs/tags/v*
|
|
- refs/tags/RELEASE-*
|
|
|
|
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: update-nlb
|
|
|
|
depends_on:
|
|
- deploy
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
node:
|
|
server: nlb
|
|
|
|
steps:
|
|
- name: update
|
|
commands:
|
|
- systemctl reload haproxy
|