gcc_drone/.drone.yml

12 lines
175 B
YAML
Raw Normal View History

2021-08-04 12:00:53 +08:00
kind: pipeline
name: default
steps:
- name: test
image: gcc:latest
commands:
- pwd && ls
- gcc hello.c -o hello
2021-08-04 12:03:20 +08:00
- ./hello drone!
2021-08-04 12:48:39 +08:00
- echo program exit with code $?