Files
test_repo/.drone.yml
a1012112796 767ca5dadd
All checks were successful
continuous-integration/drone Build is passing
continuous-integration/drone/push Build is passing
test promote
Signed-off-by: a1012112796 <1012112796@qq.com>
2021-05-15 11:00:09 +08:00

35 lines
420 B
YAML

---
kind: pipeline
type: docker
name: build_linux_test
trigger:
event:
- pull_request
- push
steps:
- name: build_test
image: gcc
commands:
- echo "start test"
- gcc main.c -o test
- ./test
---
kind: pipeline
type: docker
name: promote_test
trigger:
event:
- promote
target:
- production
steps:
- name: test
image: gcc
commands:
- echo "start test"