mirror of
https://github.com/martinrotter/rssguard.git
synced 2024-12-25 23:54:15 +01:00
23 lines
440 B
YAML
Executable File
23 lines
440 B
YAML
Executable File
language: cpp
|
|
osx_image: xcode7.3
|
|
sudo: required
|
|
dist: trusty
|
|
os:
|
|
- linux
|
|
- osx
|
|
compiler:
|
|
- gcc
|
|
branches:
|
|
only:
|
|
- master
|
|
git:
|
|
submodules: false
|
|
depth: 40
|
|
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
|