Use container-based infrastructure of Travis.
It's faster than standard (hypervisor-based) one, so we will benefit from it, especially when we want larger build matrix. I thought we can't use it since it restricts the use of ``sudo``. However, Travis provides ``addon`` feature to install additional packages from container-based infrastructure. References: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ http://docs.travis-ci.com/user/apt/ Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
This commit is contained in:
parent
e812e8fb3d
commit
04ae47a802
|
@ -1,13 +1,15 @@
|
||||||
|
sudo: false
|
||||||
language: c
|
language: c
|
||||||
compiler:
|
compiler:
|
||||||
- gcc
|
- gcc
|
||||||
- clang
|
- clang
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- gcc-multilib
|
||||||
env:
|
env:
|
||||||
- CFLAGS="-m32"
|
- CFLAGS="-m32"
|
||||||
- CFLAGS="-m64"
|
- CFLAGS="-m64"
|
||||||
before_script:
|
|
||||||
- sudo apt-get update -qq
|
|
||||||
- sudo apt-get install -y gcc-multilib
|
|
||||||
script:
|
script:
|
||||||
- perl --version
|
- perl --version
|
||||||
- make test
|
- make test
|
||||||
|
|
Loading…
Reference in New Issue