File: .travis.yml

package info (click to toggle)
telepathy-qt 0.9.8%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 12,964 kB
  • sloc: cpp: 74,811; xml: 34,307; ansic: 20,740; python: 4,154; sh: 118; makefile: 15
file content (26 lines) | stat: -rw-r--r-- 585 bytes parent folder | download
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
os: linux
dist: bionic
sudo: required
language: cpp
cache: ccache
compiler:
  - gcc

git:
  depth: 1

before_install:
  - sudo apt-get -qq install qt5-default qtbase5-dev qtbase5-dev-tools
  - sudo apt-get -qq install libtelepathy-glib-dev libtelepathy-farstream-dev libdbus-c++-dev
  - sudo apt-get -qq install python3-dbus python3-dbus.mainloop.pyqt5

before_script:
  - mkdir ../build-telepathy-qt; cd ../build-telepathy-qt
  - cmake ../telepathy-qt

script:
  - cmake --build . -- -j3 -k
  - CTEST_OUTPUT_ON_FAILURE=1 ctest --force-new-ctest-process

notifications:
  email: false