2019-12-15 22:17:01 +05:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: build
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: lint
|
2022-06-29 00:37:02 +05:00
|
|
|
image: code.pztrn.name/containers/mirror/golangci/golangci-lint:v1.46.2
|
2019-12-15 22:17:01 +05:00
|
|
|
environment:
|
|
|
|
CGO_ENABLED: 0
|
|
|
|
commands:
|
|
|
|
- golangci-lint run
|
|
|
|
|
|
|
|
- name: test
|
2022-06-29 00:37:02 +05:00
|
|
|
image: code.pztrn.name/containers/mirror/golang:1.18.3-alpine
|
2019-12-15 22:17:01 +05:00
|
|
|
environment:
|
|
|
|
CGO_ENABLED: 0
|
|
|
|
commands:
|
|
|
|
- go test ./...
|
|
|
|
|
|
|
|
- name: docker
|
2022-06-29 00:37:02 +05:00
|
|
|
image: code.pztrn.name/containers/mirror/plugins/docker:20.13.0
|
2019-12-15 22:17:01 +05:00
|
|
|
when:
|
2021-11-21 16:16:10 +05:00
|
|
|
branch: ["master"]
|
2019-12-15 22:17:01 +05:00
|
|
|
settings:
|
2022-06-29 00:37:02 +05:00
|
|
|
registry: code.pztrn.name
|
|
|
|
username: drone
|
2019-12-15 22:17:01 +05:00
|
|
|
password:
|
2022-06-29 00:37:02 +05:00
|
|
|
from_secret: drone_secret
|
|
|
|
repo: code.pztrn.name/apps/opensaps
|
2019-12-15 22:17:01 +05:00
|
|
|
auto_tag: true
|
2019-12-22 04:25:31 +05:00
|
|
|
depends_on:
|
|
|
|
- lint
|
|
|
|
- test
|