rssguard/.travis.yml

35 lines
668 B
YAML
Raw Normal View History

2016-08-25 22:31:51 +02:00
language: cpp
2019-04-03 10:07:18 +02:00
osx_image: xcode9.4
2016-08-25 22:31:51 +02:00
sudo: required
2019-04-03 10:07:18 +02:00
dist: xenial
2016-08-25 22:31:51 +02:00
os:
- linux
- osx
2017-10-13 13:48:21 +02:00
env:
2017-10-15 21:04:29 +02:00
- USE_WEBENGINE=false
- USE_WEBENGINE=true
2016-08-25 22:31:51 +02:00
compiler:
- gcc
2017-11-16 08:22:21 +01:00
notifications:
email: false
2017-10-22 20:11:50 +02:00
deploy:
provider: releases
file_glob: true
2017-10-22 20:44:01 +02:00
skip_cleanup: true
2019-04-05 09:28:37 +02:00
api_key: $GH_TOKEN
2017-10-22 20:25:33 +02:00
file:
2017-10-22 21:13:54 +02:00
- rssguard-build/rss*.AppImage
- rssguard-build/rss*.dmg
2017-10-22 20:11:50 +02:00
on:
tags: true
2016-08-25 22:31:51 +02:00
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