From: Dean Camera Date: Sat, 8 Dec 2018 03:53:29 +0000 (+1100) Subject: CI: Add dummy avr32-gcc compiler. X-Git-Tag: LUFA-210130~33 X-Git-Url: http://git.linex4red.de/pub/USBasp.git/commitdiff_plain/fe68aec846327c1e5d59c8c77489fd731b5633e1?ds=inline;hp=--cc CI: Add dummy avr32-gcc compiler. --- fe68aec846327c1e5d59c8c77489fd731b5633e1 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