From 1e3e9d5c898b735af0dfb308e14e6b9c895f4c56 Mon Sep 17 00:00:00 2001 From: David Robillard <d@drobilla.net> Date: Sat, 13 Apr 2019 21:30:51 +0200 Subject: Add CI rows for ARM architectures --- .gitlab-ci.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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 - -- cgit v1.2.1