Files
frei0r/.travis.yml
2019-04-26 14:48:46 -07:00

19 lines
487 B
YAML

notifications:
email: false
env:
- RELEASE_BRANCH="master"
language: c
os:
- linux
- osx
sudo: required
services:
- docker
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then docker pull dyne/devuan:beowulf && docker build -t dyne/frei0r-plugins .; fi
script:
- cmake . && make -j && sudo make install
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then docker run dyne/frei0r-plugins /bin/sh -c "git clean -fd && ./autogen.sh && ./configure && make -j && make install" ; fi