aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2018-12-09 18:40:21 +1100
committerDean Camera <dean@fourwalledcubicle.com>2018-12-09 18:40:21 +1100
commit2178cbecb6cff2ee21a25c8dd44dc03f855aedab (patch)
tree2e00c7f52f0e395eafcdcb215c40f54433a505b5
parentd2d0e189ededbb417ca9b573e46fb622840ad07c (diff)
downloadlufa-2178cbecb6cff2ee21a25c8dd44dc03f855aedab.tar.gz
lufa-2178cbecb6cff2ee21a25c8dd44dc03f855aedab.tar.bz2
lufa-2178cbecb6cff2ee21a25c8dd44dc03f855aedab.zip
CI: Don't use multiple jobs when building under CI, so that output is consistent.
-rw-r--r--.drone.yml9
-rw-r--r--LUFA/Build/DMBS/DMBS/gcc.mk2
2 files changed, 7 insertions, 4 deletions
diff --git a/.drone.yml b/.drone.yml
index a31792d8e..2d2abb1a4 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -1,5 +1,5 @@
kind: pipeline
-name: Documentation
+name: Documentation (Arch)
platform:
os: linux
@@ -8,6 +8,7 @@ platform:
steps:
- name: Build Documentation
image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
+ pull: always
commands:
- make --quiet -C Maintenance upgrade-doxygen
- make --quiet doxygen
@@ -24,6 +25,7 @@ platform:
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
@@ -31,7 +33,7 @@ steps:
- name: Projects
image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
commands:
- - make -j --quiet all
+ - make --quiet all
---
@@ -45,6 +47,7 @@ platform:
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
@@ -52,4 +55,4 @@ steps:
- name: Projects
image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
commands:
- - make -j --quiet all
+ - make --quiet all
diff --git a/LUFA/Build/DMBS/DMBS/gcc.mk b/LUFA/Build/DMBS/DMBS/gcc.mk
index 79b95ab76..73065dcec 100644
--- a/LUFA/Build/DMBS/DMBS/gcc.mk
+++ b/LUFA/Build/DMBS/DMBS/gcc.mk
@@ -115,7 +115,7 @@ ifneq ($(findstring $(ARCH), AVR8 XMEGA),)
else ifneq ($(findstring $(ARCH), UC3),)
BASE_CC_FLAGS += -mpart=$(MCU:at32%=%) -masm-addr-pseudos
endif
-BASE_CC_FLAGS += -Wall -fno-strict-aliasing -funsigned-char -funsigned-bitfields -ffunction-sections -fdiagnostics-color
+BASE_CC_FLAGS += -Wall -fno-strict-aliasing -funsigned-char -funsigned-bitfields -ffunction-sections
BASE_CC_FLAGS += -I.
BASE_CC_FLAGS += -DARCH=ARCH_$(ARCH)
ifneq ($(F_CPU),)