gcc_drone/.drone.yml

11 lines
136 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:
2021-08-04 12:52:07 +08:00
- ls -l
2021-08-04 12:00:53 +08:00
- gcc hello.c -o hello
2021-08-04 12:03:20 +08:00
- ./hello drone!