changes to use docker multiarch build

pull/2/head
nosamad 6 years ago
parent fc2648c915
commit 1d82e0a71f

@ -1,25 +1,18 @@
language: cpp services:
- docker
compiler:
- gcc
- clang
addons: addons:
apt: apt:
update: true update: true
packages:
- valgrind
before_install: before_install:
- ./install_deps.sh - sudo apt-get install -y curl openssl ca-certificates
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib - sudo apt-get install -y make
- sudo apt-get install -y qemu-user-static
env:
before_script: global:
- mkdir .build - MAKEFLAGS="-j 2"
- cd .build matrix:
- cmake -DCMAKE_BUILD_TYPE=Debug .. - MARCH=amd64
- MARCH=arm32v7
script: script:
- make - make MARCH=$MARCH
- valgrind ./alltests - make check MARCH=$MARCH

Loading…
Cancel
Save