1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-05 03:30:24 +02:00

Attempt to fix CI on Debian

This commit is contained in:
Andy Wingo 2019-05-16 12:37:54 +02:00
parent da98f48ce7
commit 77c4b56a6d

View file

@ -1,11 +1,13 @@
image: debian
image: debian:testing
before_script:
- dpkg --add-architecture i386
- dpkg --add-architecture arm64
- apt-get update -qq
- apt-get install -y
libc6-dev:amd64 libc6-dev:i386 gcc make
gcc-aarch64-linux-gnu libc-dev-arm64-cross
libc6-dev:amd64 gcc make
gcc-i686-linux-gnu libc6-dev-i386-cross libc6:i386
gcc-aarch64-linux-gnu libc6-dev-arm64-cross libc6:arm64
x86-64:
stage: test
@ -15,9 +17,9 @@ x86-64:
i686:
stage: test
script:
- make -C tests test-ia32 CC_IA32='gcc -m32'
- make -C tests test-ia32 CC_IA32=i686-linux-gnu-gcc
aarch64:
stage: test
script:
- make -C tests test-aarch64 CC_AARCH64=gcc-aarch64-linux-gnu
- make -C tests test-aarch64 CC_AARCH64=aarch64-linux-gnu-gcc