65 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
sudo: required
 | 
						|
dist: trusty
 | 
						|
 | 
						|
language: cpp
 | 
						|
 | 
						|
cache:
 | 
						|
  directories:
 | 
						|
    - $HOME/travisCacheDir
 | 
						|
 | 
						|
env:
 | 
						|
  matrix:
 | 
						|
   - BUILD_VERSION=""
 | 
						|
   - BUILD_VERSION="disable_register_custom_scheme"
 | 
						|
   - BUILD_VERSION="disable_crash_reports"
 | 
						|
   - BUILD_VERSION="disable_network_proxy"
 | 
						|
   - BUILD_VERSION="disable_desktop_file_generation"
 | 
						|
   - BUILD_VERSION="disable_gtk_integration"
 | 
						|
 | 
						|
matrix:
 | 
						|
  fast_finish: true
 | 
						|
 | 
						|
addons:
 | 
						|
  apt:
 | 
						|
    sources:
 | 
						|
      - ubuntu-toolchain-r-test
 | 
						|
    packages:
 | 
						|
      - bison
 | 
						|
      - build-essential
 | 
						|
      - cmake
 | 
						|
      - devscripts
 | 
						|
      - dpatch
 | 
						|
      - equivs
 | 
						|
      - fakeroot
 | 
						|
      - g++-8
 | 
						|
      - gcc-8
 | 
						|
      - git
 | 
						|
      - gnome-common
 | 
						|
      - gobject-introspection
 | 
						|
      - gtk-doc-tools
 | 
						|
      - libappindicator-dev
 | 
						|
      - libasound2-dev
 | 
						|
      - libdbusmenu-glib-dev
 | 
						|
      - liblzma-dev
 | 
						|
      - libopus-dev
 | 
						|
      - libpulse-dev
 | 
						|
      - libssl-dev
 | 
						|
      - libdee-dev
 | 
						|
      - libva-dev
 | 
						|
      - libvdpau-dev
 | 
						|
      - libxcb-xkb-dev
 | 
						|
      - libxkbcommon-dev
 | 
						|
      - lintian
 | 
						|
      - quilt
 | 
						|
      - valac
 | 
						|
      - xutils-dev
 | 
						|
      - yasm
 | 
						|
 | 
						|
before_install:
 | 
						|
  - export CXX="g++-8" CC="gcc-8"
 | 
						|
  - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60 --slave /usr/bin/g++ g++ /usr/bin/g++-8
 | 
						|
  - sudo update-alternatives --config gcc
 | 
						|
  - g++ --version
 | 
						|
 | 
						|
script:
 | 
						|
  - .travis/build.sh
 |