flucky/.drone.yml

37 lines
643 B
YAML
Raw Permalink Normal View History

2020-06-10 19:16:50 +00:00
kind: pipeline
type: docker
name: amd64
steps:
- name: build-linux-amd64
image: docker.io/volkerraschek/build-image:latest
commands:
2021-04-10 14:06:47 +00:00
- make
2020-06-10 19:16:50 +00:00
when:
event:
- push
- pull_request
- tag
2021-04-10 15:29:18 +00:00
- name: trigger
image: plugins/downstream
settings:
server: https://drone.cryptic.systems
token:
2021-04-10 15:44:20 +00:00
from_secret: drone_token
2021-04-10 15:29:18 +00:00
params:
2021-04-10 15:33:34 +00:00
- VERSION=${DRONE_COMMIT_HASH}
2021-04-10 15:40:49 +00:00
fork: true
2021-04-10 15:29:18 +00:00
repositories:
2021-04-10 15:37:08 +00:00
- flucky/PKGBUILD@master
2021-04-10 15:29:18 +00:00
2020-06-10 19:26:22 +00:00
# steps:
# - name: test-unit
# image: docker.io/volkerraschek/build-image:latest
# commands:
# - make test/unit
# when:
# event:
# - push
# - pull_request
# - tag