Files
wren/.travis.yml
T
Bob Nystrom 6396151732 fix: install gcc-multilib for 32-bit compilation support on 64-bit Travis CI VMs
Add before_install step to .travis.yml that updates apt packages and installs
gcc-multilib, enabling 32-bit C library headers and runtime for cross-compilation
in the CI environment.
2015-02-25 04:26:24 +00:00

11 lines
284 B
YAML

language: c
compiler:
- gcc
- clang
before_install:
# Travis VMs are 64-bit but we compile both for 32 and 64 bit. To enable the
# 32-bit builds to work, we need gcc-multilib.
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-multilib
script: make all && make test