mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-07 13:42:02 +01:00
23 lines
447 B
YAML
Executable File
23 lines
447 B
YAML
Executable File
language: cpp
|
|
osx_image: xcode7.3
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
git:
|
|
submodules: false
|
|
depth: 3
|
|
|
|
before_install: ./resources/scripts/.travis-before-install.sh
|
|
|
|
install: true
|
|
|
|
script:
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./resources/scripts/.travis-install-linux.sh ; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./resources/scripts/.travis-install-osx.sh ; fi |