leetcode/.drone.yml
Sainnhe Park a5cee7d64c
All checks were successful
continuous-integration/drone Build is passing
Add Drone CI
2022-10-27 17:31:40 +08:00

18 lines
251 B
YAML

kind: pipeline
type: docker
name: test
platform:
os: linux
arch: amd64
trigger:
branch:
- cpp
steps:
- name: test
image: git.sainnhe.dev/sainnhe/gcc:latest
commands:
- apk add cmake make
- cmake .
- make -j$(nproc)
- ctest