diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2018-12-08 14:53:29 +1100 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2018-12-08 14:59:51 +1100 |
commit | fe68aec846327c1e5d59c8c77489fd731b5633e1 (patch) | |
tree | e817914bb7567b91b710baec4a43534d54a8b9d3 | |
parent | 02f2ab421562ea8b7d1b6804bc13b55332d63b2e (diff) | |
download | lufa-fe68aec846327c1e5d59c8c77489fd731b5633e1.tar.gz lufa-fe68aec846327c1e5d59c8c77489fd731b5633e1.tar.bz2 lufa-fe68aec846327c1e5d59c8c77489fd731b5633e1.zip |
CI: Add dummy avr32-gcc compiler.
-rw-r--r-- | .drone.yml | 40 |
1 files changed, 30 insertions, 10 deletions
diff --git a/.drone.yml b/.drone.yml index de69a3e35..fdb8f99f7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,5 +1,9 @@ kind: pipeline -name: Arch +name: Documentation + +platform: + os: linux + arch: amd64 steps: - name: Documentation @@ -8,28 +12,44 @@ steps: - make --quiet -C Maintenance upgrade-doxygen - make --quiet doxygen -- name: Projects - image: abcminiuser/docker-ci-avr8-toolchain:latest-arch - commands: - - make -j --quiet all +--- +kind: pipeline +name: Arch + +platform: + os: linux + arch: amd64 + +steps: - name: Build Tests image: abcminiuser/docker-ci-avr8-toolchain:latest-arch 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 -j --quiet all + +--- kind: pipeline name: Ubuntu +platform: + os: linux + arch: amd64 + steps: -- name: Projects +- name: Build Tests image: abcminiuser/docker-ci-avr8-toolchain:latest-arch commands: - - make -j --quiet all + - ln -s /bin/true /sbin/avr32-gcc + - make --quiet -C BuildTests all -- name: Build Tests +- name: Projects image: abcminiuser/docker-ci-avr8-toolchain:latest-arch commands: - - make --quiet -C BuildTests all + - make -j --quiet all |