mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-11 16:06:04 -06:00
28 lines
596 B
YAML
28 lines
596 B
YAML
version: 1.0.{build}
|
|
|
|
clone_depth: 1
|
|
|
|
configuration:
|
|
- Release
|
|
|
|
os: Visual Studio 2015
|
|
image: Visual Studio 2015
|
|
|
|
platform:
|
|
- x64
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
build_script:
|
|
- IF "%platform%" == "x64" set W64="-GVisual Studio 14 2015 Win64"
|
|
- cmake %W64% -DBUILD_SHARED_LIBS=ON
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
-DENABLE_PYTHON=ON
|
|
-DERT_BUILD_CXX=OFF
|
|
-DBUILD_APPLICATIONS=ON
|
|
- cmake --build . --config %configuration% --target install
|
|
|
|
test_script:
|
|
- ctest --config %configuration% --output-on-failure
|