aboutsummaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-07-03 07:54:39 -0700
committerDrashna Jaelre <drashna@live.com>2019-07-03 07:54:49 -0700
commit110622eaa2787cc54818083d4243653b088e5b5a (patch)
treeb1637e4dc8d8aa13e9face4998cf25ae620361e5 /.drone.yml
parentd0fd80affba97b37eb00c650e87cb5982a4f260e (diff)
parent5ba628d10b54d58d445896290ba9799bd76a73b3 (diff)
downloadlufa-110622eaa2787cc54818083d4243653b088e5b5a.tar.gz
lufa-110622eaa2787cc54818083d4243653b088e5b5a.tar.bz2
lufa-110622eaa2787cc54818083d4243653b088e5b5a.zip
Merge remote-tracking branch 'abcminiuser/master'
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml58
1 files changed, 58 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 000000000..2d2abb1a4
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,58 @@
+kind: pipeline
+name: Documentation (Arch)
+
+platform:
+ os: linux
+ arch: amd64
+
+steps:
+- name: Build Documentation
+ image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
+ pull: always
+ commands:
+ - make --quiet -C Maintenance upgrade-doxygen
+ - make --quiet doxygen
+
+---
+
+kind: pipeline
+name: Build (Arch)
+
+platform:
+ os: linux
+ arch: amd64
+
+steps:
+- name: Build Tests
+ image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
+ pull: always
+ commands:
+ - ln -s /bin/true /sbin/avr32-gcc
+ - make --quiet -C BuildTests all
+
+- name: Projects
+ image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
+ commands:
+ - make --quiet all
+
+---
+
+kind: pipeline
+name: Build (Ubuntu)
+
+platform:
+ os: linux
+ arch: amd64
+
+steps:
+- name: Build Tests
+ image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
+ pull: always
+ commands:
+ - ln -s /bin/true /sbin/avr32-gcc
+ - make --quiet -C BuildTests all
+
+- name: Projects
+ image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
+ commands:
+ - make --quiet all