File: .travis.yml

package info (click to toggle)
ponyprog 3.1.4%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 11,904 kB
  • sloc: cpp: 35,932; python: 981; sh: 565; xml: 67; makefile: 45; ansic: 38
file content (45 lines) | stat: -rw-r--r-- 756 bytes parent folder | download | duplicates (2)
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
40
41
42
43
44
45
language: cpp
compiler: gcc
dist: bionic

arch:
  - amd64
  - arm64

addons:
  apt:
    packages:
      - g++-8
      - cmake
      - qt5-default
      - qtbase5-dev
      - qttools5-dev
      - qtmultimedia5-dev
      - pkg-config
      - libusb-1.0-0
      - libusb-1.0-0-dev
      - libftdi1-2
      - libftdi1-dev
      - libftdipp1-3
      - libftdipp1-dev

env:
  - CXX=g++-7
  - CXX=g++-8

#before_install:
#- gcc -v

#install:
# C++11
#- sudo apt-get install -qq g++-5 libftdi1-2 libftdi1-dev libftdipp1-2 libftdipp1-dev

script:
- ${CXX} --version
- cmake -E make_directory build
- cd build
- cmake .. -DUSE_DEBUGGER=ON -DUSE_QT5=ON
- cmake --build .
#- qmake ponyprog.pro -r -spec linux-g++-64 CONFIG+=debug QMAKE_CXX=g++ QMAKE_LINK=g++
#- make