Add Drone CI build configuration.
authorDean Camera <dean@fourwalledcubicle.com>
Tue, 4 Dec 2018 10:10:30 +0000 (21:10 +1100)
committerDean Camera <dean@fourwalledcubicle.com>
Tue, 4 Dec 2018 10:14:37 +0000 (21:14 +1100)
.drone.yml [new file with mode: 0644]

diff --git a/.drone.yml b/.drone.yml
new file mode 100644 (file)
index 0000000..8d67939
--- /dev/null
@@ -0,0 +1,18 @@
+kind: pipeline
+name: default
+
+steps:
+- name: Build
+  image: abcminiuser/docker-avr8-toolchain
+  commands:
+  - make --quiet all
+
+- name: Bootloaders
+  image: abcminiuser/docker-avr8-toolchain
+  commands:
+  - make --quiet -C Maintenance bootloaders
+
+- name: Tests
+  image: abcminiuser/docker-avr8-toolchain
+  commands:
+  - make --quiet -C BuildTests all