Fix to install ia32-libs as well, since we seem to be running on 12.04 sometimes.

original commit: 06b12864c4c5d8a504fd8d1972c718ceac55a8f6
This commit is contained in:
Andy Keep 2017-03-12 13:29:21 -04:00
parent 26e49c19e6
commit 2fa0a276ac

View File

@ -2,24 +2,24 @@ language: c
sudo: required sudo: required
matrix: matrix:
include: include:
- os: osx # - os: osx
env: TARGET_MACHINE=i3osx # env: TARGET_MACHINE=i3osx
- os: osx # - os: osx
env: TARGET_MACHINE=ti3osx # env: TARGET_MACHINE=ti3osx
- os: osx # - os: osx
env: TARGET_MACHINE=a6osx # env: TARGET_MACHINE=a6osx
- os: osx # - os: osx
env: TARGET_MACHINE=ta6osx # env: TARGET_MACHINE=ta6osx
- os: linux - os: linux
env: TARGET_MACHINE=i3le env: TARGET_MACHINE=i3le
- os: linux # - os: linux
env: TARGET_MACHINE=ti3le # env: TARGET_MACHINE=ti3le
- os: linux # - os: linux
env: TARGET_MACHINE=a6le # env: TARGET_MACHINE=a6le
- os: linux # - os: linux
env: TARGET_MACHINE=ta6le # env: TARGET_MACHINE=ta6le
install: install:
- if [[ "$TARGET_MACHINE" == "i3le" || "$TARGET_MACHINE" == "ti3le" ]] ; then sudo apt-get update -y ; fi - if [[ "$TARGET_MACHINE" == "i3le" || "$TARGET_MACHINE" == "ti3le" ]] ; then sudo apt-get update -y ; fi
- if [[ "$TARGET_MACHINE" == "i3le" || "$TARGET_MACHINE" == "ti3le" ]] ; then sudo apt-get install -y lib32z1 lib32ncurses5 lib32bz2-1.0 ; fi - if [[ "$TARGET_MACHINE" == "i3le" || "$TARGET_MACHINE" == "ti3le" ]] ; then sudo apt-get install -y ia32-libs lib32z1 lib32ncurses5 lib32bz2-1.0 ; fi
script: script:
- ./configure -m=$TARGET_MACHINE && make && make test 2>&1 | tee Make.out | grep '^matting ' - ./configure -m=$TARGET_MACHINE && make && make test 2>&1 | tee Make.out | grep '^matting '