qrz/.drone.yml

119 lines
1.7 KiB
YAML
Raw Permalink Normal View History

2020-04-06 23:31:26 +02:00
---
kind: pipeline
2020-04-07 23:03:53 +02:00
type: docker
2020-12-05 17:44:23 +01:00
name: cleanup-before
2020-04-07 23:03:53 +02:00
2020-04-08 01:36:52 +02:00
steps:
2020-12-05 17:44:23 +01:00
- name: clean
image: alpine
2020-05-09 19:39:21 +02:00
commands:
2020-12-05 17:44:23 +01:00
- rm -rf /build/*
volumes:
- name: build
path: /build
when:
event: tag
volumes:
- name: build
host:
path: /tmp/qrz/build
---
kind: pipeline
type: docker
name: default-linux-amd64
steps:
2020-04-08 01:36:52 +02:00
- name: build
image: golang
commands:
2020-04-12 15:25:09 +02:00
- ./ci-build.sh build
2020-04-08 01:36:52 +02:00
environment:
GOOS: linux
GOARCH: amd64
2020-12-05 17:44:23 +01:00
volumes:
- name: build
path: /build
volumes:
- name: build
host:
path: /tmp/qrz/build
depends_on:
- cleanup-before
---
kind: pipeline
type: docker
name: gitea-release
steps:
- name: move
image: alpine
commands:
- mv build/* ./
volumes:
- name: build
path: /drone/src/build
when:
event: tag
2020-04-08 01:36:52 +02:00
- name: release
image: plugins/gitea-release
settings:
base_url: https://git.paulbsd.com
api_key:
from_secret: gitea_token
2020-04-12 16:35:17 +02:00
files: "*.tar.gz"
2020-04-12 15:25:09 +02:00
checksum:
- sha256
- sha512
2020-12-05 17:44:23 +01:00
title: VERSION
volumes:
- name: build
path: /drone/src/build
2020-04-08 01:36:52 +02:00
when:
event: tag
2020-12-05 17:44:23 +01:00
- name: ls
image: alpine
commands:
- find .
volumes:
- name: build
path: /drone/src/build
when:
event: tag
volumes:
- name: build
host:
path: /tmp/qrz/build
depends_on:
- default-linux-amd64
2020-04-08 01:36:52 +02:00
---
kind: pipeline
type: docker
2020-12-05 17:44:23 +01:00
name: cleanup-after
2020-04-06 23:31:26 +02:00
steps:
2020-12-05 17:44:23 +01:00
- name: clean
image: alpine
2020-05-09 19:39:21 +02:00
commands:
2020-12-05 17:44:23 +01:00
- rm -rf /build/*
volumes:
- name: build
path: /build
2020-04-08 01:36:52 +02:00
when:
2020-11-18 23:23:03 +01:00
event: tag
2020-12-05 17:44:23 +01:00
volumes:
- name: build
host:
path: /tmp/qrz/build
depends_on:
- gitea-release