diff --git a/.travis.yml b/.travis.yml index 00a3420c..d8f832a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,6 @@ +os: + - linux + - osx language: c dist: trusty sudo: required @@ -5,6 +8,12 @@ env: - EMULATOR=simh BASICS=yes - EMULATOR=klh10 BASICS=yes - EMULATOR=sims BASICS=yes +matrix: + exclude: + - os: osx + env: EMULATOR=klh10 BASICS=yes + - os: osx + env: EMULATOR=sims BASICS=yes install: sh -ex build/dependencies.sh install_${TRAVIS_OS_NAME:-linux} script: make check-dirs all deploy: diff --git a/build/dependencies.sh b/build/dependencies.sh index add2ee2c..076db208 100644 --- a/build/dependencies.sh +++ b/build/dependencies.sh @@ -16,4 +16,8 @@ install_linux() { esac } +install_osx() { + true +} + "$1"