Merge branch 'VS2017' into 'master'
Vs2017 CI builds See merge request OpenMesh/OpenMesh!164
This commit is contained in:
117
.gitlab-ci.yml
117
.gitlab-ci.yml
@@ -44,6 +44,115 @@ cppcheck:
|
|||||||
paths:
|
paths:
|
||||||
- cppcheck.log
|
- cppcheck.log
|
||||||
|
|
||||||
|
|
||||||
|
.VS2015-64-bit-shared-apps:
|
||||||
|
variables:
|
||||||
|
BUILD_PLATFORM: "VS2015"
|
||||||
|
ARCHITECTURE: "x64"
|
||||||
|
SHARED: "TRUE"
|
||||||
|
APPS: "ON"
|
||||||
|
script: "CI\\Windows.bat"
|
||||||
|
tags:
|
||||||
|
- VS2015
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- build-release/*.exe
|
||||||
|
|
||||||
|
.VS2015-32-bit-shared-apps:
|
||||||
|
variables:
|
||||||
|
BUILD_PLATFORM: "VS2015"
|
||||||
|
ARCHITECTURE: "x32"
|
||||||
|
SHARED: "TRUE"
|
||||||
|
APPS: "ON"
|
||||||
|
script: "CI\\Windows.bat"
|
||||||
|
tags:
|
||||||
|
- VS2015
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- build-release/*.exe
|
||||||
|
|
||||||
|
.VS2015-64-bit-static-apps:
|
||||||
|
variables:
|
||||||
|
BUILD_PLATFORM: "VS2015"
|
||||||
|
ARCHITECTURE: "x64"
|
||||||
|
SHARED: "FALSE"
|
||||||
|
APPS: "ON"
|
||||||
|
script: "CI\\Windows.bat"
|
||||||
|
tags:
|
||||||
|
- VS2015
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- build-release/*.exe
|
||||||
|
|
||||||
|
.VS2015-32-bit-static-apps:
|
||||||
|
variables:
|
||||||
|
BUILD_PLATFORM: "VS2015"
|
||||||
|
ARCHITECTURE: "x32"
|
||||||
|
SHARED: "FALSE"
|
||||||
|
APPS: "ON"
|
||||||
|
script: "CI\\Windows.bat"
|
||||||
|
tags:
|
||||||
|
- VS2015
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- build-release/*.exe
|
||||||
|
|
||||||
|
|
||||||
|
VS2017-64-bit-shared-no-apps:
|
||||||
|
variables:
|
||||||
|
BUILD_PLATFORM: "VS2017"
|
||||||
|
ARCHITECTURE: "x64"
|
||||||
|
SHARED: "TRUE"
|
||||||
|
APPS: "OFF"
|
||||||
|
script: "CI\\Windows.bat"
|
||||||
|
tags:
|
||||||
|
- VS2017
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- build-release/*.exe
|
||||||
|
|
||||||
|
|
||||||
|
VS2017-32-bit-shared-no-apps:
|
||||||
|
variables:
|
||||||
|
BUILD_PLATFORM: "VS2017"
|
||||||
|
ARCHITECTURE: "x32"
|
||||||
|
SHARED: "TRUE"
|
||||||
|
APPS: "OFF"
|
||||||
|
script: "CI\\Windows.bat"
|
||||||
|
tags:
|
||||||
|
- VS2017
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- build-release/*.exe
|
||||||
|
|
||||||
|
|
||||||
|
VS2017-64-bit-static-no-apps:
|
||||||
|
variables:
|
||||||
|
BUILD_PLATFORM: "VS2017"
|
||||||
|
ARCHITECTURE: "x64"
|
||||||
|
SHARED: "FALSE"
|
||||||
|
APPS: "OFF"
|
||||||
|
script: "CI\\Windows.bat"
|
||||||
|
tags:
|
||||||
|
- VS2017
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- build-release/*.exe
|
||||||
|
|
||||||
|
|
||||||
|
VS2017-32-bit-static-no-apps:
|
||||||
|
variables:
|
||||||
|
BUILD_PLATFORM: "VS2017"
|
||||||
|
ARCHITECTURE: "x32"
|
||||||
|
SHARED: "FALSE"
|
||||||
|
APPS: "OFF"
|
||||||
|
script: "CI\\Windows.bat"
|
||||||
|
tags:
|
||||||
|
- VS2017
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- build-release/*.exe
|
||||||
|
|
||||||
VS2015-64-bit-shared-apps:
|
VS2015-64-bit-shared-apps:
|
||||||
variables:
|
variables:
|
||||||
BUILD_PLATFORM: "VS2015"
|
BUILD_PLATFORM: "VS2015"
|
||||||
@@ -57,6 +166,7 @@ VS2015-64-bit-shared-apps:
|
|||||||
paths:
|
paths:
|
||||||
- build-release/*.exe
|
- build-release/*.exe
|
||||||
|
|
||||||
|
|
||||||
VS2015-64-bit-shared-no-apps:
|
VS2015-64-bit-shared-no-apps:
|
||||||
variables:
|
variables:
|
||||||
BUILD_PLATFORM: "VS2015"
|
BUILD_PLATFORM: "VS2015"
|
||||||
@@ -260,10 +370,3 @@ Doc-publish:
|
|||||||
script: "CI/ci-doc.sh"
|
script: "CI/ci-doc.sh"
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -69,6 +69,20 @@ IF "%BUILD_PLATFORM%" == "VS2015" (
|
|||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
IF "%BUILD_PLATFORM%" == "VS2017" (
|
||||||
|
set LIBPATH=E:\libs\VS2017
|
||||||
|
set GTESTVERSION=gtest-1.7.0
|
||||||
|
set GENERATOR=Visual Studio 15%ARCH_VS%
|
||||||
|
set VS_PATH="C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\devenv.com"
|
||||||
|
|
||||||
|
set QT_VERSION=
|
||||||
|
IF "%ARCHITECTURE%" == "x64" (
|
||||||
|
set QT_INSTALL_PATH=E:\Qt\Qt5.10.1\5.10.1\msvc2017_64
|
||||||
|
set QT_BASE_CONFIG=-DQT5_INSTALL_PATH=E:\Qt\Qt5.10.1\5.10.1\msvc2017_64
|
||||||
|
)
|
||||||
|
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
IF "%APPS%" == "ON" (
|
IF "%APPS%" == "ON" (
|
||||||
set STRING_APPS=
|
set STRING_APPS=
|
||||||
|
|||||||
Reference in New Issue
Block a user