-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy path.travis.yml
More file actions
27 lines (20 loc) · 718 Bytes
/
Copy path.travis.yml
File metadata and controls
27 lines (20 loc) · 718 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
language: cpp
compiler: gcc
dist: focal
sudo: required
env:
global:
- MAKEFLAGS="-j4"
matrix:
- QT_BASE=5_15
before_install:
- if [ "$QT_BASE" = "5_15" ]; then sudo add-apt-repository --yes ppa:beineri/opt-qt-5.15.2-focal; fi
- sudo apt-get update -qq
install:
- if [ "$QT_BASE" = "5_15" ]; then sudo apt-get install -y --force-yes qt515base qt515xmlpatterns qt515svg qt515declarative qt515tools; fi
- sudo apt-get install -y --force-yes build-essential libglu1-mesa-dev
before_script:
- if [ "$QT_BASE" = "5_15" ]; then source /opt/qt515/bin/qt515-env.sh; fi
script:
- if [ "$QT_BASE" = "5_15" ]; then /opt/qt515/bin/qmake lcd-image-converter.pro; fi
- make