42 lines
		
	
	
	
		
			882 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			882 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable file
		
	
	
	
	
language: cpp
 | 
						|
osx_image: xcode9.4
 | 
						|
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
 |