-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (20 loc) · 738 Bytes
/
.travis.yml
File metadata and controls
25 lines (20 loc) · 738 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
sudo: required
dist: xenial
language: cpp
compiler: gcc
before_install:
- sudo add-apt-repository --yes ppa:beineri/opt-qt-5.15.2-xenial
- sudo apt-get update -qq
- sudo apt-get install -qq libsqlite3-dev libnetcdf-dev libgl-dev
- sudo apt-cache search qt515
- sudo apt-get install -qq qt515base qt515charts-no-lgpl qt515webengine qt515imageformats qt515connectivity qt515graphicaleffects qt515script qt515sensors qt515webchannel qt515svg qt515xmlpatterns qt515location qt515quickcontrols2 qt515quickcontrols
- export PATH=/opt/qt515/bin:$PATH
script:
- uname -a
- which qmake
- gcc --version
- g++ --version
- . /opt/qt515/bin/qt515-env.sh
- git submodule update --init --recursive
- /opt/qt515/bin/qmake MetOcean.pro
- make -j4