qrz/.drone.yml

78 lines
1.3 KiB
YAML
Raw Normal View History

2020-04-06 23:31:26 +02:00
---
kind: pipeline
2020-04-07 23:03:53 +02:00
type: docker
name: default-linux-amd64
2020-04-08 01:36:52 +02:00
steps:
- name: build
image: golang
commands:
- ./ci-build.sh
environment:
GOOS: linux
GOARCH: amd64
- name: release
image: plugins/gitea-release
settings:
base_url: https://git.paulbsd.com
api_key:
from_secret: gitea_token
files: dist/*.tar.gz
checksum:
- sha256
- sha512
when:
event: tag
---
kind: pipeline
type: docker
name: default-linux-arm64
2020-04-06 23:31:26 +02:00
steps:
2020-04-07 23:03:53 +02:00
- name: build
2020-04-06 23:31:26 +02:00
image: golang
2020-04-07 23:43:41 +02:00
commands:
- ./ci-build.sh
2020-04-07 23:15:47 +02:00
environment:
GOOS: linux
2020-04-08 01:36:52 +02:00
GOARCH: arm64
- name: release
image: plugins/gitea-release
settings:
base_url: https://git.paulbsd.com
api_key:
from_secret: gitea_token
files: dist/*.tar.gz
checksum:
- sha256
- sha512
when:
event: tag
---
kind: pipeline
type: docker
name: default-netbsd-amd64
steps:
- name: build
image: golang
commands:
- ./ci-build.sh
environment:
GOOS: netbsd
2020-04-07 23:15:47 +02:00
GOARCH: amd64
2020-04-07 00:20:03 +02:00
- name: release
image: plugins/gitea-release
settings:
base_url: https://git.paulbsd.com
api_key:
from_secret: gitea_token
2020-04-07 23:03:53 +02:00
files: dist/*.tar.gz
2020-04-08 01:36:52 +02:00
checksum:
- sha256
- sha512
2020-04-07 00:21:25 +02:00
when:
event: tag