summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 15cc4a8dd65cfacbec850d54151dd23fd6650973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: cpp
sudo: false

os:
  - linux
  - osx

compiler:
  - gcc
  - clang

addons:
  apt:
    packages:
    - qt5-default

script:
  - qmake -v
  - qmake -Wall qtpass.pro
  - make -j$(nproc)

notifications:
  
  irc: 
    channels:
      - "chat.freenode.net#IJhack"
    on_success: change
    on_failure: always

matrix:
  allow_failures:
    - os: osx