cpp_playground/.drone.yml
jiacai 9e8c685653
All checks were successful
continuous-integration/drone Build is passing
add inherit and class pointer casting
2022-09-25 23:13:27 +08:00

12 lines
257 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