Greatly simplify container builds

This commit is contained in:
Thom Wiggers 2019-02-27 15:17:26 +01:00
parent 0fa56021d1
commit c0e4cac831
No known key found for this signature in database
GPG Key ID: 001BB0A7CE26E363

View File

@ -4,75 +4,6 @@ dist: xenial
matrix: matrix:
include: include:
- name: "Linux + GCC + Linting"
os: linux
compiler: gcc
env:
- MAKETARGET="test-all tidy-all check-format"
addons:
apt:
packages: &xenial-packages
- astyle
- python3-yaml
- python3-nose
- python3-rednose
- valgrind
- name: "Linux + Clang"
os: linux
compiler: clang
env:
- MAKETARGET=test-all
addons:
apt:
packages: *xenial-packages
- name: "Linux 32-bit GCC"
os: linux
compiler: gcc # Clang has i386-libasan problems on xenial
addons:
apt:
packages: # no way to re-use xenial-packages with lists :(
- astyle
- gcc-multilib
- python3-yaml
- python3-nose
- python3-rednose
- valgrind
before_install:
- sudo dpkg --add-architecture i386
- sudo apt update -qq && sudo apt-get install -qqy libc6-dbg:i386
env:
- MAKETARGET=test-all
- EXTRAFLAGS=-m32
- name: "Run tests on qemu-ppc (GCC)"
os: linux
services: docker
env:
- MAKETARGET="run-functest-all run-sanitizer-all"
script:
- docker run --rm --privileged multiarch/qemu-user-static:register --reset
- docker run --rm -v `pwd`:`pwd` -w `pwd` "pqclean/debian-unstable-ppc" /bin/bash -c "uname -a &&
make ${MAKETARGET} &&
cd test && python3 -m nose --rednose --verbose"
- name: "Run tests on qemu-arm32 (GCC)"
os: linux
services: docker
env:
- MAKETARGET="run-functest-all run-sanitizer-all"
script:
- docker run --rm --privileged multiarch/qemu-user-static:register --reset
- docker run --rm -v `pwd`:`pwd` -w `pwd` "pqclean/debian-buster-arm" /bin/bash -c "uname -a &&
ASAN_OPTIONS=detect_leaks=0 make ${MAKETARGET} &&
cd test && python3 -m nose --rednose --verbose"
- name: "Run tests on qemu-aarch64 (GCC)"
os: linux
services: docker
env:
- MAKETARGET="run-functest-all run-sanitizer-all"
script:
- docker run --rm --privileged multiarch/qemu-user-static:register --reset
- docker run --rm -v `pwd`:`pwd` -w `pwd` "pqclean/debian-buster-aarch64" /bin/bash -c "uname -a &&
ASAN_OPTIONS=detect_leaks=0 make ${MAKETARGET} &&
cd test && python3 -m nose --rednose --verbose"
- name: "MacOS + Clang" - name: "MacOS + Clang"
os: osx os: osx
osx_image: xcode10.1 osx_image: xcode10.1
@ -95,9 +26,27 @@ matrix:
env: env:
- MAKETARGET=test-all - MAKETARGET=test-all
env:
matrix:
- CC=gcc ARCH=armhf
- CC=clang ARCH=armhf
- CC=gcc ARCH=arm64
- CC=clang ARCH=arm64
- CC=gcc ARCH=i386
- CC=clang ARCH=i386
- CC=gcc ARCH=amd64
- CC=clang ARCH=amd64
- CC=gcc ARCH=unstable-ppc
- CC=clang ARCH=unstable-ppc
before_script:
- docker run --rm --privileged multiarch/qemu-user-static:register --reset
script: script:
- make ${MAKETARGET} - docker run --rm -v `pwd`:`pwd` -w `pwd` "pqclean/ci-containers:$ARCH" /bin/bash -c "
- cd test && python3 -m nose --rednose --verbose uname -a &&
export CC=${CC} &&
cd test && python3 -m nose --rednose --verbose"
cache: pip cache: pip