gcc_drone/.drone.yml

13 lines
155 B
YAML
Raw Permalink Normal View History

2021-08-04 12:00:53 +08:00
kind: pipeline
name: default
steps:
- name: test
image: gcc:latest
commands:
2022-04-24 11:19:22 +08:00
- whoami
- pwd
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!