diff --git a/.drone.yml b/.drone.yml index 2b65a13..eea116a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,3 +1,20 @@ +--- +kind: pipeline +name: gcc + +platform: + arch: amd64 + +steps: +- name: build + pull: always + image: immawanderer/archlinux-cdev:latest + commands: + - pacman -Syu --noconfirm --needed gcc cmake + - cmake CMakeLists.txt + - make + + --- kind: pipeline name: testing-amd64