Missing ci config files
This commit is contained in:
28
CI/gitlab-ci/windows-template-job-apps.yml
Normal file
28
CI/gitlab-ci/windows-template-job-apps.yml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
#------------- 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
|
||||||
|
reports:
|
||||||
|
junit:
|
||||||
|
- build-release/unittests/report.xml
|
||||||
|
- build-release/unittests/report-customvec.xml
|
||||||
|
- build-release/unittests/report-doublevec.xml
|
||||||
|
|
||||||
27
CI/gitlab-ci/windows-template-job-noapps.yml
Normal file
27
CI/gitlab-ci/windows-template-job-noapps.yml
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
#------------- Job Informations:
|
||||||
|
# Type: Build+Test: Release
|
||||||
|
# OS: Windows
|
||||||
|
# Architecture: {{ARCHITECTURE}}
|
||||||
|
# Shared: {{SHARED}}
|
||||||
|
# VS Version: {{VSVERSION}}
|
||||||
|
# Apps: {{APPS}}
|
||||||
|
|
||||||
|
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
|
||||||
|
reports:
|
||||||
|
junit:
|
||||||
|
- build-release/unittests/report.xml
|
||||||
|
- build-release/unittests/report-customvec.xml
|
||||||
|
- build-release/unittests/report-doublevec.xml
|
||||||
|
|
||||||
Reference in New Issue
Block a user