mirror of
https://github.com/martinrotter/rssguard.git
synced 2024-12-29 01:20:32 +01:00
43 lines
881 B
YAML
Executable File
43 lines
881 B
YAML
Executable File
language: cpp
|
|
osx_image: xcode12
|
|
dist: xenial
|
|
os:
|
|
- linux
|
|
- osx
|
|
env:
|
|
- USE_WEBENGINE=false
|
|
- USE_WEBENGINE=true
|
|
compiler:
|
|
- gcc
|
|
notifications:
|
|
email: false
|
|
deploy:
|
|
- provider: releases
|
|
skip_cleanup: true
|
|
file_glob: true
|
|
api_key: $GH_TOKEN
|
|
file:
|
|
- rssguard-build/src/rssguard/rss*.AppImage
|
|
- rssguard-build/src/rssguard/rss*.dmg
|
|
on:
|
|
tags: true
|
|
all_branches: true
|
|
- provider: bintray
|
|
skip_cleanup: true
|
|
file: .travis-bintray-desc.json
|
|
user: martinrotter
|
|
key: $BINTRAY_KEY
|
|
on:
|
|
all_branches: true
|
|
|
|
git:
|
|
submodules: false
|
|
depth: 10
|
|
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
|