37 lines
643 B
YAML
37 lines
643 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: amd64
|
|
|
|
steps:
|
|
- name: build-linux-amd64
|
|
image: docker.io/volkerraschek/build-image:latest
|
|
commands:
|
|
- make
|
|
when:
|
|
event:
|
|
- push
|
|
- pull_request
|
|
- tag
|
|
|
|
- name: trigger
|
|
image: plugins/downstream
|
|
settings:
|
|
server: https://drone.cryptic.systems
|
|
token:
|
|
from_secret: drone_token
|
|
params:
|
|
- VERSION=${DRONE_COMMIT_HASH}
|
|
fork: true
|
|
repositories:
|
|
- flucky/PKGBUILD@master
|
|
|
|
# steps:
|
|
# - name: test-unit
|
|
# image: docker.io/volkerraschek/build-image:latest
|
|
# commands:
|
|
# - make test/unit
|
|
# when:
|
|
# event:
|
|
# - push
|
|
# - pull_request
|
|
# - tag |