windows template support
This commit is contained in:
@@ -297,7 +297,15 @@ macos-cpp14-release:
|
||||
# Windows tasks
|
||||
# -----------------
|
||||
|
||||
VS2017-64-bit-shared-apps:
|
||||
#------------- Job Informations:
|
||||
# Type: Build+Test: Release
|
||||
# OS: Windows
|
||||
# Architecture: x64
|
||||
# Shared: TRUE
|
||||
# VS Version: VS2017
|
||||
# Apps: {{APPS}}
|
||||
|
||||
build-VS2017-x64-shared-TRUE-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2017"
|
||||
@@ -312,7 +320,28 @@ VS2017-64-bit-shared-apps:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
VS2017-64-bit-static-apps:
|
||||
build-VS2017-x64-shared-TRUE-no-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2017"
|
||||
ARCHITECTURE: "x64"
|
||||
SHARED: "TRUE"
|
||||
APPS: "OFF"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2017
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
#------------- Job Informations:
|
||||
# Type: Build+Test: Release
|
||||
# OS: Windows
|
||||
# Architecture: x64
|
||||
# Shared: FALSE
|
||||
# VS Version: VS2017
|
||||
# Apps: {{APPS}}
|
||||
|
||||
build-VS2017-x64-shared-FALSE-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2017"
|
||||
@@ -327,22 +356,7 @@ VS2017-64-bit-static-apps:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
|
||||
VS2017-64-bit-shared-no-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2017"
|
||||
ARCHITECTURE: "x64"
|
||||
SHARED: "TRUE"
|
||||
APPS: "OFF"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2017
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
VS2017-64-bit-static-no-apps:
|
||||
build-VS2017-x64-shared-FALSE-no-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2017"
|
||||
@@ -356,7 +370,15 @@ VS2017-64-bit-static-no-apps:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
VS2015-64-bit-shared-apps:
|
||||
#------------- Job Informations:
|
||||
# Type: Build+Test: Release
|
||||
# OS: Windows
|
||||
# Architecture: x64
|
||||
# Shared: TRUE
|
||||
# VS Version: VS2015
|
||||
# Apps: {{APPS}}
|
||||
|
||||
build-VS2015-x64-shared-TRUE-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2015"
|
||||
@@ -366,12 +388,12 @@ VS2015-64-bit-shared-apps:
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2015
|
||||
- Qt5101
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
|
||||
VS2015-64-bit-shared-no-apps:
|
||||
build-VS2015-x64-shared-TRUE-no-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2015"
|
||||
@@ -384,8 +406,15 @@ VS2015-64-bit-shared-no-apps:
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
#------------- Job Informations:
|
||||
# Type: Build+Test: Release
|
||||
# OS: Windows
|
||||
# Architecture: x64
|
||||
# Shared: FALSE
|
||||
# VS Version: VS2015
|
||||
# Apps: {{APPS}}
|
||||
|
||||
VS2015-64-bit-static-apps:
|
||||
build-VS2015-x64-shared-FALSE-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2015"
|
||||
@@ -395,11 +424,12 @@ VS2015-64-bit-static-apps:
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2015
|
||||
- Qt5101
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
VS2015-64-bit-static-no-apps:
|
||||
build-VS2015-x64-shared-FALSE-no-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2015"
|
||||
|
||||
36
CI/gitlab-ci/windows-template-job.yml
Normal file
36
CI/gitlab-ci/windows-template-job.yml
Normal file
@@ -0,0 +1,36 @@
|
||||
#------------- Job Informations:
|
||||
# Type: Build+Test: Release
|
||||
# OS: Windows
|
||||
# Architecture: {{ARCHITECTURE}}
|
||||
# Shared: {{SHARED}}
|
||||
# VS Version: {{VSVERSION}}
|
||||
# Apps: {{APPS}}
|
||||
|
||||
build-{{VSVERSION}}-{{ARCHITECTURE}}-shared-{{SHARED}}-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "{{VSVERSION}}"
|
||||
ARCHITECTURE: "{{ARCHITECTURE}}"
|
||||
SHARED: "{{SHARED}}"
|
||||
APPS: "ON"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- {{VSVERSION}}
|
||||
- {{QTTAG}}
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
build-{{VSVERSION}}-{{ARCHITECTURE}}-shared-{{SHARED}}-no-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "{{VSVERSION}}"
|
||||
ARCHITECTURE: "{{ARCHITECTURE}}"
|
||||
SHARED: "{{SHARED}}"
|
||||
APPS: "OFF"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- {{VSVERSION}}
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
@@ -2,118 +2,8 @@
|
||||
# Windows tasks
|
||||
# -----------------
|
||||
|
||||
VS2017-64-bit-shared-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2017"
|
||||
ARCHITECTURE: "x64"
|
||||
SHARED: "TRUE"
|
||||
APPS: "ON"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2017
|
||||
- Qt5101
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
{windows-template-job.yml, ARCHITECTURE=x64, SHARED=TRUE, VSVERSION=VS2017, QTTAG=Qt5101}
|
||||
{windows-template-job.yml, ARCHITECTURE=x64, SHARED=FALSE, VSVERSION=VS2017, QTTAG=Qt5101}
|
||||
|
||||
VS2017-64-bit-static-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2017"
|
||||
ARCHITECTURE: "x64"
|
||||
SHARED: "FALSE"
|
||||
APPS: "ON"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2017
|
||||
- Qt5101
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
|
||||
VS2017-64-bit-shared-no-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2017"
|
||||
ARCHITECTURE: "x64"
|
||||
SHARED: "TRUE"
|
||||
APPS: "OFF"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2017
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
VS2017-64-bit-static-no-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2017"
|
||||
ARCHITECTURE: "x64"
|
||||
SHARED: "FALSE"
|
||||
APPS: "OFF"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2017
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
VS2015-64-bit-shared-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2015"
|
||||
ARCHITECTURE: "x64"
|
||||
SHARED: "TRUE"
|
||||
APPS: "ON"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2015
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
|
||||
VS2015-64-bit-shared-no-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2015"
|
||||
ARCHITECTURE: "x64"
|
||||
SHARED: "TRUE"
|
||||
APPS: "OFF"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2015
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
VS2015-64-bit-static-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2015"
|
||||
ARCHITECTURE: "x64"
|
||||
SHARED: "FALSE"
|
||||
APPS: "ON"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2015
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
|
||||
VS2015-64-bit-static-no-apps:
|
||||
stage: build
|
||||
variables:
|
||||
BUILD_PLATFORM: "VS2015"
|
||||
ARCHITECTURE: "x64"
|
||||
SHARED: "FALSE"
|
||||
APPS: "OFF"
|
||||
script: "CI\\Windows.bat"
|
||||
tags:
|
||||
- VS2015
|
||||
artifacts:
|
||||
paths:
|
||||
- build-release/*.exe
|
||||
{windows-template-job.yml, ARCHITECTURE=x64, SHARED=TRUE, VSVERSION=VS2015, QTTAG=Qt5101}
|
||||
{windows-template-job.yml, ARCHITECTURE=x64, SHARED=FALSE, VSVERSION=VS2015, QTTAG=Qt5101}
|
||||
|
||||
Reference in New Issue
Block a user