diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..5aebfe7 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,17 @@ +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