cctools-port/.travis.yml
Thomas Pöchtrager 5321df7206
Merge pull request #67 from fanquake/sudo_deprecated
travis: remove deprecated use of sudo
2019-06-04 15:19:18 +02:00

15 lines
423 B
YAML

language: cpp
dist: trusty
os:
- linux
compiler:
- clang
before_install:
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get install -y git gcc g++ gobjc llvm-dev cmake; fi
script:
- mkdir -p tmp && TMP=$PWD/tmp && git clone https://github.com/tpoechtrager/apple-libtapi.git && cd apple-libtapi && INSTALLPREFIX=$TMP ./build.sh && ./install.sh && cd .. && cd cctools && ./configure --with-libtapi=$TMP && make