mirror of
https://github.com/dyne/frei0r.git
synced 2025-12-05 14:19:59 +01:00
19 lines
487 B
YAML
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
|