libcaesium/.travis.yml

28 lines
467 B
YAML
Raw Normal View History

2016-11-04 11:14:50 +01:00
language: c
2016-11-13 14:43:54 +01:00
2019-12-10 23:34:13 +01:00
os:
- linux
- osx
2019-11-02 14:53:58 +01:00
dist: bionic
sudo: required
2016-11-04 11:14:50 +01:00
compiler:
- gcc
- clang
2016-11-13 14:43:54 +01:00
before_install:
2019-12-10 23:34:13 +01:00
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install nasm cmake; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install libtool autoconf git nasm pkg-config cmake; fi
2016-11-13 14:46:58 +01:00
- chmod +x install.sh
2016-11-13 14:43:54 +01:00
- ./install.sh
2016-11-04 11:14:50 +01:00
before_script:
- mkdir build
- cd build
- cmake ..
2016-11-14 18:56:24 +01:00
script: make
2016-11-16 09:41:46 +01:00