Skip to content

Commit 5d64e50

Browse files
committed
Merge branch 'travis_ci'
2 parents 5516fe8 + 5089cd9 commit 5d64e50

3 files changed

Lines changed: 31 additions & 349 deletions

File tree

.travis.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
os: linux
3+
dist: focal
4+
5+
language: cpp
6+
compiler: gcc
7+
8+
before_install:
9+
- sudo add-apt-repository -y ppa:beineri/opt-qt-5.15.0-focal
10+
- sudo apt update -qq
11+
12+
install:
13+
# install CMake
14+
- sudo apt install -qq cmake
15+
- cmake -version
16+
17+
# Dependency for Qt
18+
- sudo apt install -qq mesa-common-dev libglu1-mesa-dev
19+
20+
# Install Qt
21+
- sudo apt install -qq qt515base qt515serialbus
22+
23+
# Setup Qt env
24+
- source /opt/qt*/bin/qt*-env.sh
25+
26+
script:
27+
- cmake .
28+
- make -j$(nproc)

0 commit comments

Comments
 (0)