cpp_playground/.drone.yml

19 lines
425 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:
2022-09-25 22:59:42 +08:00
- g++ hello.cpp -o hello && ./hello
2022-09-25 22:58:44 +08:00
- cd class || exit
2022-09-25 22:59:42 +08:00
- g++ construct.cpp -o construct && ./construct
2022-09-25 23:13:27 +08:00
- g++ inherit.cpp -o inherit && ./inherit
2022-10-17 23:50:17 +08:00
- cd ..
- cd stl || exit
- g++ map.cpp -o map && ./map
2022-11-12 16:40:18 +08:00
- cd ..
- cd interview || exit
- g++ memcache.cpp -o memcache && ./memcache