mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-28 18:01:08 -06:00
26 lines
462 B
YAML
26 lines
462 B
YAML
dist: xenial # For 18.04, use bionic
|
|
|
|
language: cpp
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
packages:
|
|
- cmake
|
|
- cmake-data
|
|
- libqt5opengl5
|
|
- qt5-qmake
|
|
- qt5-default
|
|
- libqt5opengl5-dev
|
|
- qtbase5-dev
|
|
- qtscript5-dev
|
|
|
|
script:
|
|
- mkdir -p build
|
|
- cd build
|
|
- cmake -DRESINSIGHT_INCLUDE_APPLICATION_UNIT_TESTS=true -DRESINSIGHT_ENABLE_COTIRE=true ..
|
|
- make -j8 ResInsight_unity
|