Skip to content
Snippets Groups Projects
Select Git revision
  • 1a2b8b7a6b7aa57aafeb3e004c1a449443e511e3
  • master default protected
  • update_hunter protected
  • test-ci protected
  • pr-1855/Integral-Tech/nheko/fix-html
  • pr-1838/ReillyBrogan/nheko/nheko-optional-kirigami
  • gh-readonly-queue/master/pr-1825-27683bedc41375ac97ddf87ce430fd98aac9fc7c
  • pr-1815/p12tic/nheko/workaround-bad-well-known
  • hideAllPins
  • pr-1760/nishanthkarthik/nheko/theme
  • pr-1732/nishanthkarthik/nheko/search-space
  • pr-1728/Bubu/nheko/scrollable_welcome_page
  • fixCirrusCI
  • pr-1725/checkraisefold/nheko/win_d3d11_qml
  • pr-1719/Lymkwi/nheko/feature/media-captioning
  • betterimageview
  • win_d3d11_qml
  • fixswitch
  • glitchtext
  • gitlab_as_runner protected
  • quickswitchclose
  • v0.12.0 protected
  • v0.11.3 protected
  • v0.11.2 protected
  • v0.11.1 protected
  • v0.11.0 protected
  • v0.10.2 protected
  • v0.10.1-1 protected
  • v0.10.1 protected
  • v0.10.0 protected
  • v0.9.3 protected
  • v0.9.2 protected
  • v0.9.1-1 protected
  • v0.9.1 protected
  • v0.9.0 protected
  • v0.8.2 protected
  • v0.8.2-rc2 protected
  • v0.8.2-RC protected
  • v0.8.1 protected
  • v0.0.1 protected
  • v0.8.0 protected
41 results

.travis.yml

Blame
  • DeepBlueV7.X's avatar
    Nicolas Werner authored and GitHub committed
    * Upload nightlies to a matrix room
    
    * Add branch to upload name
    
    * Update README with new nightly location
    1a2b8b7a
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .travis.yml 6.23 KiB
    language: cpp
    sudo: required
    dist: xenial
    
    notifications:
      webhooks:
        urls:
        - https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MHJlZF9za3klM0FuaGVrby5pbS8lMjFVYkNtSWxHVEhOSWdJUlpjcHQlM0FuaGVrby5pbQ
        on_success: always
        on_failure: always
        on_start: never
      email: false
    
    cache:
      directories:
        - .hunter
        - build-flatpak/.flatpak-builder
    
    matrix:
        include:
            - os: osx
              compiler: clang
              # C++17 support
              osx_image: xcode10.2
              env:
                - DEPLOYMENT=1
              addons:
                homebrew:
                  taps: nlohmann/json
                  packages:
                    - clang-format
                    - cmake
                    - ninja
                    - openssl
                    - qt5
                    - python3 # for uploads
                  update: true # workaround for broken travis homebrew
            - os: linux
              compiler: gcc-7
              env:
                  - CXX=g++-7
                  - CC=gcc-7
                  - QT_PKG=512
                  - DEPLOYMENT=1
              addons:
                  apt:
                      sources: 
                        - ubuntu-toolchain-r-test
                        - sourceline: 'ppa:beineri/opt-qt-5.12.6-xenial'
                      packages: 
                        - g++-7 
                        - ninja-build
                        - qt512base
                        - qt512tools
                        - qt512svg
                        - qt512multimedia
                        - qt512quickcontrols2
                        - qt512graphicaleffects
                        - liblmdb-dev
                        - libgl1-mesa-dev # needed for missing gl.h
            - os: linux
              compiler: gcc-8
              env:
                  - CXX=g++-8
                  - CC=gcc-8
                  - QT_PKG=59
              addons:
                  apt:
                      sources: 
                        - ubuntu-toolchain-r-test