From: Dean Camera Date: Sat, 8 Dec 2018 03:10:40 +0000 (+1100) Subject: CI: Build on Arch (bleeding-ege) and Ubuntu (stable) AVR-GCC toolchains. X-Git-Tag: LUFA-210130~35 X-Git-Url: http://git.linex4red.de/pub/USBasp.git/commitdiff_plain/f2740a66bafa876dfcf2cdfa4c6f3e17395e8bf8?ds=inline;hp=--cc CI: Build on Arch (bleeding-ege) and Ubuntu (stable) AVR-GCC toolchains. --- f2740a66bafa876dfcf2cdfa4c6f3e17395e8bf8 diff --git a/.drone.yml b/.drone.yml index eb8abf305..de69a3e35 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,5 +1,5 @@ kind: pipeline -name: default +name: Arch steps: - name: Documentation @@ -13,10 +13,21 @@ steps: commands: - make -j --quiet all -- name: Bootloaders +- name: Build Tests image: abcminiuser/docker-ci-avr8-toolchain:latest-arch commands: - - make --quiet -C Maintenance bootloaders + - make --quiet -C BuildTests all + +# ---- + +kind: pipeline +name: Ubuntu + +steps: +- name: Projects + image: abcminiuser/docker-ci-avr8-toolchain:latest-arch + commands: + - make -j --quiet all - name: Build Tests image: abcminiuser/docker-ci-avr8-toolchain:latest-arch diff --git a/makefile b/makefile index db8279dbe..1080f765a 100644 --- a/makefile +++ b/makefile @@ -9,7 +9,6 @@ # Makefile to build the LUFA library, projects and demos. # Call with "make all" to rebuild everything, "make clean" to clean everything, -# "make mostlyclean" to remove all intermediary files but preserve any binaries, # "make doxygen" to document everything with Doxygen (if installed). Call # "make help" for additional target build information within a specific project.