aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-04-13 21:30:51 +0200
committerDavid Robillard <d@drobilla.net>2019-04-13 23:17:45 +0200
commit1e3e9d5c898b735af0dfb308e14e6b9c895f4c56 (patch)
tree53fde37fb2dac93f4abd82541747e5bd41aa8d56
parentf682d691785338e8d812b42623f5c726b304f04e (diff)
downloadserd-1e3e9d5c898b735af0dfb308e14e6b9c895f4c56.tar.gz
serd-1e3e9d5c898b735af0dfb308e14e6b9c895f4c56.tar.bz2
serd-1e3e9d5c898b735af0dfb308e14e6b9c895f4c56.zip
Add CI rows for ARM architectures
-rw-r--r--.gitlab-ci.yml17
1 files changed, 16 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6f4c76a2..9417256d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,3 +1,19 @@
+arm-linux-gnueabihf:
+ image: drobilla/debian-stretch
+ variables:
+ CC: "arm-linux-gnueabihf-gcc"
+ CXX: "arm-linux-gnueabihf-g++"
+ script:
+ - python ./waf configure build test -dsT --no-coverage --wrapper=qemu-arm
+
+aarch64-linux-gnu:
+ image: drobilla/debian-stretch
+ variables:
+ CC: "aarch64-linux-gnu-gcc"
+ CXX: "aarch64-linux-gnu-g++"
+ script:
+ - python ./waf configure build test -dsT --no-coverage --wrapper=qemu-aarch64
+
lin_dbg:
script:
- python ./waf configure build test -dsT --no-coverage
@@ -65,4 +81,3 @@ win_rel:
- python ./waf configure build test -T --no-coverage
tags:
- windows
-