Attempting to use the addons feature, travis lint says no, but the online docs say yes.

original commit: 7505f22c46888caf0edd1110ef4a6cc4ec00931f
This commit is contained in:
Andy Keep 2017-03-12 14:04:48 -04:00
parent d4461c7122
commit f7a74f0cbb

View File

@ -1,9 +1,8 @@
language: c language: c
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
@ -18,8 +17,12 @@ matrix:
# env: TARGET_MACHINE=a6le # env: TARGET_MACHINE=a6le
# - os: linux # - os: linux
# env: TARGET_MACHINE=ta6le # env: TARGET_MACHINE=ta6le
install: dist: trusty
- if [[ "$TARGET_MACHINE" == "i3le" || "$TARGET_MACHINE" == "ti3le" ]] ; then sudo apt-get update -y ; fi addons:
- if [[ "$TARGET_MACHINE" == "i3le" || "$TARGET_MACHINE" == "ti3le" ]] ; then sudo apt-get install -y ia32-libs lib32z1 lib32ncurses5 lib32bz2-1.0 ; fi apt:
packages:
- lib32z1
- lib32ncurses5
- lib32bz2
script: script:
- ./configure -m=$TARGET_MACHINE && make && ( cd ${TARGET_MACHINE}/mats && make partialx 2>&1 ) | tee Make.out | grep '^matting ' - ./configure -m=$TARGET_MACHINE && make && ( cd ${TARGET_MACHINE}/mats && make partialx 2>&1 ) | tee Make.out | grep '^matting '