added qt6 ci jobs
This commit is contained in:
225
.gitlab-ci.yml
225
.gitlab-ci.yml
@@ -32,6 +32,231 @@ cppcheck:
|
||||
paths:
|
||||
- cppcheck.log
|
||||
|
||||
#----------- Job Informations:
|
||||
# Type: Build: debug
|
||||
# OS: Linux
|
||||
# Compiler: gcc
|
||||
# Language: cpp11
|
||||
# QT Version: qt6.0.0
|
||||
|
||||
build-debug-gcc-cpp11-qt6.0.0:
|
||||
stage: build
|
||||
script: "CI/ci-linux-build.sh"
|
||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||
tags:
|
||||
- Linux
|
||||
- stretch
|
||||
variables:
|
||||
COMPILER: "gcc"
|
||||
LANGUAGE: "cpp11"
|
||||
BUILD_TYPE: "debug"
|
||||
QTVERSION: "qt6.0.0"
|
||||
IWYU: "no"
|
||||
VECTORCHECKS: "yes"
|
||||
artifacts:
|
||||
paths:
|
||||
- build-gcc-cpp11-qt6.0.0-debug-vectorchecks/
|
||||
|
||||
#----------- Job Informations:
|
||||
# Type: Test: debug
|
||||
# OS: Linux
|
||||
# Compiler: gcc
|
||||
# Language: cpp11
|
||||
|
||||
test-debug-gcc-cpp11-qt6.0.0:
|
||||
stage: test
|
||||
script: "CI/ci-linux-test.sh"
|
||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||
tags:
|
||||
- Linux
|
||||
- stretch
|
||||
- MultiThreads
|
||||
variables:
|
||||
COMPILER: "gcc"
|
||||
LANGUAGE: "cpp11"
|
||||
BUILD_TYPE: "debug"
|
||||
QTVERSION: "qt6.0.0"
|
||||
IWYU: "no"
|
||||
VECTORCHECKS: "yes"
|
||||
dependencies: [build-debug-gcc-cpp11-qt6.0.0]
|
||||
needs: [build-debug-gcc-cpp11-qt6.0.0]
|
||||
artifacts:
|
||||
reports:
|
||||
junit:
|
||||
- build-gcc-cpp11-qt6.0.0-debug-vectorchecks/Unittests/report.xml
|
||||
- build-gcc-cpp11-qt6.0.0-debug-vectorchecks/Unittests/report-customvec.xml
|
||||
- build-gcc-cpp11-qt6.0.0-debug-vectorchecks/Unittests/report-doublevec.xml
|
||||
|
||||
|
||||
#----------- Job Informations:
|
||||
# Type: Build: release
|
||||
# OS: Linux
|
||||
# Compiler: gcc
|
||||
# Language: cpp11
|
||||
# QT Version: qt6.0.0
|
||||
|
||||
build-release-gcc-cpp11-qt6.0.0:
|
||||
stage: build
|
||||
script: "CI/ci-linux-build.sh"
|
||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||
tags:
|
||||
- Linux
|
||||
- stretch
|
||||
variables:
|
||||
COMPILER: "gcc"
|
||||
LANGUAGE: "cpp11"
|
||||
BUILD_TYPE: "release"
|
||||
QTVERSION: "qt6.0.0"
|
||||
IWYU: "no"
|
||||
VECTORCHECKS: "yes"
|
||||
artifacts:
|
||||
paths:
|
||||
- build-gcc-cpp11-qt6.0.0-release-vectorchecks/
|
||||
|
||||
#----------- Job Informations:
|
||||
# Type: Test: release
|
||||
# OS: Linux
|
||||
# Compiler: gcc
|
||||
# Language: cpp11
|
||||
|
||||
test-release-gcc-cpp11-qt6.0.0:
|
||||
stage: test
|
||||
script: "CI/ci-linux-test.sh"
|
||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||
tags:
|
||||
- Linux
|
||||
- stretch
|
||||
- MultiThreads
|
||||
variables:
|
||||
COMPILER: "gcc"
|
||||
LANGUAGE: "cpp11"
|
||||
BUILD_TYPE: "release"
|
||||
QTVERSION: "qt6.0.0"
|
||||
IWYU: "no"
|
||||
VECTORCHECKS: "yes"
|
||||
dependencies: [build-release-gcc-cpp11-qt6.0.0]
|
||||
needs: [build-release-gcc-cpp11-qt6.0.0]
|
||||
artifacts:
|
||||
reports:
|
||||
junit:
|
||||
- build-gcc-cpp11-qt6.0.0-release-vectorchecks/Unittests/report.xml
|
||||
- build-gcc-cpp11-qt6.0.0-release-vectorchecks/Unittests/report-customvec.xml
|
||||
- build-gcc-cpp11-qt6.0.0-release-vectorchecks/Unittests/report-doublevec.xml
|
||||
|
||||
|
||||
#----------- Job Informations:
|
||||
# Type: Build: debug
|
||||
# OS: Linux
|
||||
# Compiler: clang
|
||||
# Language: cpp11
|
||||
# QT Version: qt6.0.0
|
||||
|
||||
build-debug-clang-cpp11-qt6.0.0:
|
||||
stage: build
|
||||
script: "CI/ci-linux-build.sh"
|
||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||
tags:
|
||||
- Linux
|
||||
- stretch
|
||||
variables:
|
||||
COMPILER: "clang"
|
||||
LANGUAGE: "cpp11"
|
||||
BUILD_TYPE: "debug"
|
||||
QTVERSION: "qt6.0.0"
|
||||
IWYU: "no"
|
||||
VECTORCHECKS: "yes"
|
||||
artifacts:
|
||||
paths:
|
||||
- build-clang-cpp11-qt6.0.0-debug-vectorchecks/
|
||||
|
||||
#----------- Job Informations:
|
||||
# Type: Test: debug
|
||||
# OS: Linux
|
||||
# Compiler: clang
|
||||
# Language: cpp11
|
||||
|
||||
test-debug-clang-cpp11-qt6.0.0:
|
||||
stage: test
|
||||
script: "CI/ci-linux-test.sh"
|
||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||
tags:
|
||||
- Linux
|
||||
- stretch
|
||||
- MultiThreads
|
||||
variables:
|
||||
COMPILER: "clang"
|
||||
LANGUAGE: "cpp11"
|
||||
BUILD_TYPE: "debug"
|
||||
QTVERSION: "qt6.0.0"
|
||||
IWYU: "no"
|
||||
VECTORCHECKS: "yes"
|
||||
dependencies: [build-debug-clang-cpp11-qt6.0.0]
|
||||
needs: [build-debug-clang-cpp11-qt6.0.0]
|
||||
artifacts:
|
||||
reports:
|
||||
junit:
|
||||
- build-clang-cpp11-qt6.0.0-debug-vectorchecks/Unittests/report.xml
|
||||
- build-clang-cpp11-qt6.0.0-debug-vectorchecks/Unittests/report-customvec.xml
|
||||
- build-clang-cpp11-qt6.0.0-debug-vectorchecks/Unittests/report-doublevec.xml
|
||||
|
||||
|
||||
#----------- Job Informations:
|
||||
# Type: Build: release
|
||||
# OS: Linux
|
||||
# Compiler: clang
|
||||
# Language: cpp11
|
||||
# QT Version: qt6.0.0
|
||||
|
||||
build-release-clang-cpp11-qt6.0.0:
|
||||
stage: build
|
||||
script: "CI/ci-linux-build.sh"
|
||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||
tags:
|
||||
- Linux
|
||||
- stretch
|
||||
variables:
|
||||
COMPILER: "clang"
|
||||
LANGUAGE: "cpp11"
|
||||
BUILD_TYPE: "release"
|
||||
QTVERSION: "qt6.0.0"
|
||||
IWYU: "no"
|
||||
VECTORCHECKS: "yes"
|
||||
artifacts:
|
||||
paths:
|
||||
- build-clang-cpp11-qt6.0.0-release-vectorchecks/
|
||||
|
||||
#----------- Job Informations:
|
||||
# Type: Test: release
|
||||
# OS: Linux
|
||||
# Compiler: clang
|
||||
# Language: cpp11
|
||||
|
||||
test-release-clang-cpp11-qt6.0.0:
|
||||
stage: test
|
||||
script: "CI/ci-linux-test.sh"
|
||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||
tags:
|
||||
- Linux
|
||||
- stretch
|
||||
- MultiThreads
|
||||
variables:
|
||||
COMPILER: "clang"
|
||||
LANGUAGE: "cpp11"
|
||||
BUILD_TYPE: "release"
|
||||
QTVERSION: "qt6.0.0"
|
||||
IWYU: "no"
|
||||
VECTORCHECKS: "yes"
|
||||
dependencies: [build-release-clang-cpp11-qt6.0.0]
|
||||
needs: [build-release-clang-cpp11-qt6.0.0]
|
||||
artifacts:
|
||||
reports:
|
||||
junit:
|
||||
- build-clang-cpp11-qt6.0.0-release-vectorchecks/Unittests/report.xml
|
||||
- build-clang-cpp11-qt6.0.0-release-vectorchecks/Unittests/report-customvec.xml
|
||||
- build-clang-cpp11-qt6.0.0-release-vectorchecks/Unittests/report-doublevec.xml
|
||||
|
||||
|
||||
|
||||
#----------- Job Informations:
|
||||
# Type: Build: debug
|
||||
# OS: Linux
|
||||
|
||||
Reference in New Issue
Block a user