cpp_playground/.drone.yml

13 lines
275 B
YAML
Raw Normal View History

2022-09-25 22:14:42 +08:00
kind: pipeline
name: default
steps:
2022-09-25 22:58:44 +08:00
- name: test
image: gcc:latest
commands:
- echo "*****hello*****"
- gcc hello.cpp -o hello && ./hello
- cd class || exit
- echo "*****construct*****"
- gcc construct.cpp -o construct && ./construct