cpp_playground/.drone.yml
jiacai_wang 550963241c
All checks were successful
continuous-integration/drone/push Build is passing
add stl in pipeline
2022-10-17 23:50:17 +08:00

16 lines
344 B
YAML

kind: pipeline
name: default
steps:
- name: test
image: gcc:latest
commands:
- g++ hello.cpp -o hello && ./hello
- cd class || exit
- g++ construct.cpp -o construct && ./construct
- g++ inherit.cpp -o inherit && ./inherit
- cd ..
- cd stl || exit
- g++ map.cpp -o map && ./map
- cd ..