-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
39 lines (33 loc) · 766 Bytes
/
.travis.yml
File metadata and controls
39 lines (33 loc) · 766 Bytes
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
34
35
36
37
38
39
dist: xenial
addons:
apt:
packages:
- extra-cmake-modules
- libpam0g-dev
- libxcb1-dev
- libxcb-xkb-dev
- libdrm-dev
- libgl-dev
- libsystemd-dev
- python-docutils
language: cpp
compiler:
- clang
- gcc
sudo: required
env:
- PAM=0
- PAM=1
before_script:
- sudo add-apt-repository -y ppa:beineri/opt-qt58-xenial
- sudo apt-get update -q
- sudo apt-get install -y qt58declarative qt58tools
script:
- source /opt/qt58/bin/qt58-env.sh
- if [ "$PAM" == "0" ]; then cmake -DBUILD_MAN_PAGES=ON -DENABLE_PAM:BOOL=OFF .; fi
- if [ "$PAM" == "1" ]; then cmake -DBUILD_MAN_PAGES=ON -DENABLE_PAM:BOOL=ON .; fi
- make -j $(nproc)
notifications:
email: false
irc:
- "chat.freenode.net#sddm"