add drone pipeline

This commit is contained in:
Jiacai Wang 2021-08-04 12:00:53 +08:00
parent 9deb826f70
commit 3ffc0b309a

10
.drone.yml Normal file
View File

@ -0,0 +1,10 @@
kind: pipeline
name: default
steps:
- name: test
image: gcc:latest
commands:
- pwd && ls
- gcc hello.c -o hello
- ./hello