mirror of
https://github.com/darlinghq/cctools-port.git
synced 2024-11-23 04:09:48 +00:00
5321df7206
travis: remove deprecated use of sudo
15 lines
423 B
YAML
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
|