rssguard/.travis.yml

43 lines
882 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
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:
2020-05-01 22:05:19 +02:00
- provider: releases
2020-05-07 09:00:54 +02:00
skip_cleanup: true
2020-05-01 22:05:19 +02:00
file_glob: true
api_key: $GH_TOKEN
file:
2020-05-02 19:53:52 +02:00
- rssguard-build/src/rssguard/rss*.AppImage
- rssguard-build/src/rssguard/rss*.dmg
2020-05-01 22:05:19 +02:00
on:
tags: true
all_branches: true
- provider: bintray
2020-05-07 09:00:54 +02:00
skip_cleanup: true
2020-05-01 22:05:19 +02:00
file: .travis-bintray-desc.json
user: martinrotter
key: $BINTRAY_KEY
on:
all_branches: true
2016-08-25 22:31:51 +02:00
git:
submodules: false
2020-05-02 19:53:52 +02:00
depth: 10
2016-08-25 22:31:51 +02:00
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