Linux ci jobs no use environment variables instead of positional parameters
This commit is contained in:
136
.gitlab-ci.yml
136
.gitlab-ci.yml
@@ -41,11 +41,17 @@ cppcheck:
|
|||||||
|
|
||||||
build-debug-gcc-cpp11-qt5.15.1:
|
build-debug-gcc-cpp11-qt5.15.1:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh gcc cpp11 debug qt5.15.1"
|
script: "CI/ci-linux-build.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "gcc"
|
||||||
|
LANGUAGE: "cpp11"
|
||||||
|
BUILD_TYPE: "debug"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-gcc-cpp11-qt5.15.1-debug/
|
- build-gcc-cpp11-qt5.15.1-debug/
|
||||||
@@ -58,12 +64,18 @@ build-debug-gcc-cpp11-qt5.15.1:
|
|||||||
|
|
||||||
test-debug-gcc-cpp11-qt5.15.1:
|
test-debug-gcc-cpp11-qt5.15.1:
|
||||||
stage: test
|
stage: test
|
||||||
script: "CI/ci-linux-test.sh gcc cpp11 debug qt5.15.1"
|
script: "CI/ci-linux-test.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
- MultiThreads
|
- MultiThreads
|
||||||
|
variables:
|
||||||
|
COMPILER: "gcc"
|
||||||
|
LANGUAGE: "cpp11"
|
||||||
|
BUILD_TYPE: "debug"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
dependencies: [build-debug-gcc-cpp11-qt5.15.1]
|
dependencies: [build-debug-gcc-cpp11-qt5.15.1]
|
||||||
needs: [build-debug-gcc-cpp11-qt5.15.1]
|
needs: [build-debug-gcc-cpp11-qt5.15.1]
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -83,11 +95,17 @@ test-debug-gcc-cpp11-qt5.15.1:
|
|||||||
|
|
||||||
build-release-gcc-cpp11-qt5.15.1:
|
build-release-gcc-cpp11-qt5.15.1:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh gcc cpp11 release qt5.15.1"
|
script: "CI/ci-linux-build.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "gcc"
|
||||||
|
LANGUAGE: "cpp11"
|
||||||
|
BUILD_TYPE: "release"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-gcc-cpp11-qt5.15.1-release/
|
- build-gcc-cpp11-qt5.15.1-release/
|
||||||
@@ -100,12 +118,18 @@ build-release-gcc-cpp11-qt5.15.1:
|
|||||||
|
|
||||||
test-release-gcc-cpp11-qt5.15.1:
|
test-release-gcc-cpp11-qt5.15.1:
|
||||||
stage: test
|
stage: test
|
||||||
script: "CI/ci-linux-test.sh gcc cpp11 release qt5.15.1"
|
script: "CI/ci-linux-test.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
- MultiThreads
|
- MultiThreads
|
||||||
|
variables:
|
||||||
|
COMPILER: "gcc"
|
||||||
|
LANGUAGE: "cpp11"
|
||||||
|
BUILD_TYPE: "release"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
dependencies: [build-release-gcc-cpp11-qt5.15.1]
|
dependencies: [build-release-gcc-cpp11-qt5.15.1]
|
||||||
needs: [build-release-gcc-cpp11-qt5.15.1]
|
needs: [build-release-gcc-cpp11-qt5.15.1]
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -125,11 +149,17 @@ test-release-gcc-cpp11-qt5.15.1:
|
|||||||
|
|
||||||
build-debug-clang-cpp11-qt5.15.1:
|
build-debug-clang-cpp11-qt5.15.1:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh clang cpp11 debug qt5.15.1"
|
script: "CI/ci-linux-build.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "clang"
|
||||||
|
LANGUAGE: "cpp11"
|
||||||
|
BUILD_TYPE: "debug"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-clang-cpp11-qt5.15.1-debug/
|
- build-clang-cpp11-qt5.15.1-debug/
|
||||||
@@ -142,12 +172,18 @@ build-debug-clang-cpp11-qt5.15.1:
|
|||||||
|
|
||||||
test-debug-clang-cpp11-qt5.15.1:
|
test-debug-clang-cpp11-qt5.15.1:
|
||||||
stage: test
|
stage: test
|
||||||
script: "CI/ci-linux-test.sh clang cpp11 debug qt5.15.1"
|
script: "CI/ci-linux-test.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
- MultiThreads
|
- MultiThreads
|
||||||
|
variables:
|
||||||
|
COMPILER: "clang"
|
||||||
|
LANGUAGE: "cpp11"
|
||||||
|
BUILD_TYPE: "debug"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
dependencies: [build-debug-clang-cpp11-qt5.15.1]
|
dependencies: [build-debug-clang-cpp11-qt5.15.1]
|
||||||
needs: [build-debug-clang-cpp11-qt5.15.1]
|
needs: [build-debug-clang-cpp11-qt5.15.1]
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -167,11 +203,17 @@ test-debug-clang-cpp11-qt5.15.1:
|
|||||||
|
|
||||||
build-release-clang-cpp11-qt5.15.1:
|
build-release-clang-cpp11-qt5.15.1:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh clang cpp11 release qt5.15.1"
|
script: "CI/ci-linux-build.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "clang"
|
||||||
|
LANGUAGE: "cpp11"
|
||||||
|
BUILD_TYPE: "release"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-clang-cpp11-qt5.15.1-release/
|
- build-clang-cpp11-qt5.15.1-release/
|
||||||
@@ -184,12 +226,18 @@ build-release-clang-cpp11-qt5.15.1:
|
|||||||
|
|
||||||
test-release-clang-cpp11-qt5.15.1:
|
test-release-clang-cpp11-qt5.15.1:
|
||||||
stage: test
|
stage: test
|
||||||
script: "CI/ci-linux-test.sh clang cpp11 release qt5.15.1"
|
script: "CI/ci-linux-test.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
- MultiThreads
|
- MultiThreads
|
||||||
|
variables:
|
||||||
|
COMPILER: "clang"
|
||||||
|
LANGUAGE: "cpp11"
|
||||||
|
BUILD_TYPE: "release"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
dependencies: [build-release-clang-cpp11-qt5.15.1]
|
dependencies: [build-release-clang-cpp11-qt5.15.1]
|
||||||
needs: [build-release-clang-cpp11-qt5.15.1]
|
needs: [build-release-clang-cpp11-qt5.15.1]
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -209,11 +257,17 @@ test-release-clang-cpp11-qt5.15.1:
|
|||||||
|
|
||||||
build-debug-gcc-cpp14-qt5.15.1:
|
build-debug-gcc-cpp14-qt5.15.1:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh gcc cpp14 debug qt5.15.1"
|
script: "CI/ci-linux-build.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "gcc"
|
||||||
|
LANGUAGE: "cpp14"
|
||||||
|
BUILD_TYPE: "debug"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-gcc-cpp14-qt5.15.1-debug/
|
- build-gcc-cpp14-qt5.15.1-debug/
|
||||||
@@ -226,12 +280,18 @@ build-debug-gcc-cpp14-qt5.15.1:
|
|||||||
|
|
||||||
test-debug-gcc-cpp14-qt5.15.1:
|
test-debug-gcc-cpp14-qt5.15.1:
|
||||||
stage: test
|
stage: test
|
||||||
script: "CI/ci-linux-test.sh gcc cpp14 debug qt5.15.1"
|
script: "CI/ci-linux-test.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
- MultiThreads
|
- MultiThreads
|
||||||
|
variables:
|
||||||
|
COMPILER: "gcc"
|
||||||
|
LANGUAGE: "cpp14"
|
||||||
|
BUILD_TYPE: "debug"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
dependencies: [build-debug-gcc-cpp14-qt5.15.1]
|
dependencies: [build-debug-gcc-cpp14-qt5.15.1]
|
||||||
needs: [build-debug-gcc-cpp14-qt5.15.1]
|
needs: [build-debug-gcc-cpp14-qt5.15.1]
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -251,11 +311,17 @@ test-debug-gcc-cpp14-qt5.15.1:
|
|||||||
|
|
||||||
build-release-gcc-cpp14-qt5.15.1:
|
build-release-gcc-cpp14-qt5.15.1:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh gcc cpp14 release qt5.15.1"
|
script: "CI/ci-linux-build.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "gcc"
|
||||||
|
LANGUAGE: "cpp14"
|
||||||
|
BUILD_TYPE: "release"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-gcc-cpp14-qt5.15.1-release/
|
- build-gcc-cpp14-qt5.15.1-release/
|
||||||
@@ -268,12 +334,18 @@ build-release-gcc-cpp14-qt5.15.1:
|
|||||||
|
|
||||||
test-release-gcc-cpp14-qt5.15.1:
|
test-release-gcc-cpp14-qt5.15.1:
|
||||||
stage: test
|
stage: test
|
||||||
script: "CI/ci-linux-test.sh gcc cpp14 release qt5.15.1"
|
script: "CI/ci-linux-test.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
- MultiThreads
|
- MultiThreads
|
||||||
|
variables:
|
||||||
|
COMPILER: "gcc"
|
||||||
|
LANGUAGE: "cpp14"
|
||||||
|
BUILD_TYPE: "release"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
dependencies: [build-release-gcc-cpp14-qt5.15.1]
|
dependencies: [build-release-gcc-cpp14-qt5.15.1]
|
||||||
needs: [build-release-gcc-cpp14-qt5.15.1]
|
needs: [build-release-gcc-cpp14-qt5.15.1]
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -293,11 +365,17 @@ test-release-gcc-cpp14-qt5.15.1:
|
|||||||
|
|
||||||
build-debug-clang-cpp14-qt5.15.1:
|
build-debug-clang-cpp14-qt5.15.1:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh clang cpp14 debug qt5.15.1"
|
script: "CI/ci-linux-build.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "clang"
|
||||||
|
LANGUAGE: "cpp14"
|
||||||
|
BUILD_TYPE: "debug"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-clang-cpp14-qt5.15.1-debug/
|
- build-clang-cpp14-qt5.15.1-debug/
|
||||||
@@ -310,12 +388,18 @@ build-debug-clang-cpp14-qt5.15.1:
|
|||||||
|
|
||||||
test-debug-clang-cpp14-qt5.15.1:
|
test-debug-clang-cpp14-qt5.15.1:
|
||||||
stage: test
|
stage: test
|
||||||
script: "CI/ci-linux-test.sh clang cpp14 debug qt5.15.1"
|
script: "CI/ci-linux-test.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
- MultiThreads
|
- MultiThreads
|
||||||
|
variables:
|
||||||
|
COMPILER: "clang"
|
||||||
|
LANGUAGE: "cpp14"
|
||||||
|
BUILD_TYPE: "debug"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
dependencies: [build-debug-clang-cpp14-qt5.15.1]
|
dependencies: [build-debug-clang-cpp14-qt5.15.1]
|
||||||
needs: [build-debug-clang-cpp14-qt5.15.1]
|
needs: [build-debug-clang-cpp14-qt5.15.1]
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -335,11 +419,17 @@ test-debug-clang-cpp14-qt5.15.1:
|
|||||||
|
|
||||||
build-release-clang-cpp14-qt5.15.1:
|
build-release-clang-cpp14-qt5.15.1:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh clang cpp14 release qt5.15.1"
|
script: "CI/ci-linux-build.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "clang"
|
||||||
|
LANGUAGE: "cpp14"
|
||||||
|
BUILD_TYPE: "release"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-clang-cpp14-qt5.15.1-release/
|
- build-clang-cpp14-qt5.15.1-release/
|
||||||
@@ -352,12 +442,18 @@ build-release-clang-cpp14-qt5.15.1:
|
|||||||
|
|
||||||
test-release-clang-cpp14-qt5.15.1:
|
test-release-clang-cpp14-qt5.15.1:
|
||||||
stage: test
|
stage: test
|
||||||
script: "CI/ci-linux-test.sh clang cpp14 release qt5.15.1"
|
script: "CI/ci-linux-test.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
- MultiThreads
|
- MultiThreads
|
||||||
|
variables:
|
||||||
|
COMPILER: "clang"
|
||||||
|
LANGUAGE: "cpp14"
|
||||||
|
BUILD_TYPE: "release"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "no"
|
||||||
dependencies: [build-release-clang-cpp14-qt5.15.1]
|
dependencies: [build-release-clang-cpp14-qt5.15.1]
|
||||||
needs: [build-release-clang-cpp14-qt5.15.1]
|
needs: [build-release-clang-cpp14-qt5.15.1]
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -377,11 +473,17 @@ test-release-clang-cpp14-qt5.15.1:
|
|||||||
|
|
||||||
iwyu-release-clang-cpp14-qt5.15.1:
|
iwyu-release-clang-cpp14-qt5.15.1:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh clang cpp14 release qt5.15.1 IWYU"
|
script: "CI/ci-linux-build.sh"
|
||||||
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "clang"
|
||||||
|
LANGUAGE: "cpp14"
|
||||||
|
BUILD_TYPE: "release"
|
||||||
|
QTVERSION: "qt5.15.1"
|
||||||
|
IWYU: "yes"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-clang-cpp14-release-qt5.15.1-iwyu-Vector-Checks/compile_commands.json
|
- build-clang-cpp14-release-qt5.15.1-iwyu-Vector-Checks/compile_commands.json
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
COMPILER=$1
|
|
||||||
LANGUAGE=$2
|
|
||||||
BUILD_TYPE=$3
|
|
||||||
QTVERSION=$4
|
|
||||||
IWYU=$5
|
|
||||||
|
|
||||||
# Exit script on any error
|
# Exit script on any error
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
@@ -86,7 +80,7 @@ else
|
|||||||
BUILDPATH="$BUILDPATH-debug"
|
BUILDPATH="$BUILDPATH-debug"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$IWYU" == "IWYU" ]; then
|
if [ "$IWYU" == "yes" ]; then
|
||||||
echo "Include what you use enabled.";
|
echo "Include what you use enabled.";
|
||||||
BUILDPATH="$BUILDPATH-iwyu"
|
BUILDPATH="$BUILDPATH-iwyu"
|
||||||
OPTIONS="$OPTIONS -DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
|
OPTIONS="$OPTIONS -DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
|
||||||
|
|||||||
@@ -6,11 +6,17 @@
|
|||||||
|
|
||||||
iwyu-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}:
|
iwyu-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh {{COMPILER}} {{LANGUAGE}} {{BUILDTYPE}} {{QT_VERSION}} IWYU"
|
script: "CI/ci-linux-build.sh"
|
||||||
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "{{COMPILER}}"
|
||||||
|
LANGUAGE: "{{LANGUAGE}}"
|
||||||
|
BUILD_TYPE: "{{BUILDTYPE}}"
|
||||||
|
QTVERSION: "{{QT_VERSION}}"
|
||||||
|
IWYU: "yes"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-{{COMPILER}}-{{LANGUAGE}}-{{BUILDTYPE}}-{{QT_VERSION}}-iwyu-Vector-Checks/compile_commands.json
|
- build-{{COMPILER}}-{{LANGUAGE}}-{{BUILDTYPE}}-{{QT_VERSION}}-iwyu-Vector-Checks/compile_commands.json
|
||||||
|
|||||||
@@ -7,11 +7,17 @@
|
|||||||
|
|
||||||
build-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}:
|
build-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}:
|
||||||
stage: build
|
stage: build
|
||||||
script: "CI/ci-linux-build.sh {{COMPILER}} {{LANGUAGE}} {{BUILDTYPE}} {{QT_VERSION}}"
|
script: "CI/ci-linux-build.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
|
variables:
|
||||||
|
COMPILER: "{{COMPILER}}"
|
||||||
|
LANGUAGE: "{{LANGUAGE}}"
|
||||||
|
BUILD_TYPE: "{{BUILDTYPE}}"
|
||||||
|
QTVERSION: "{{QT_VERSION}}"
|
||||||
|
IWYU: "no"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}-{{BUILDTYPE}}/
|
- build-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}-{{BUILDTYPE}}/
|
||||||
|
|||||||
@@ -6,12 +6,18 @@
|
|||||||
|
|
||||||
test-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}:
|
test-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}:
|
||||||
stage: test
|
stage: test
|
||||||
script: "CI/ci-linux-test.sh {{COMPILER}} {{LANGUAGE}} {{BUILDTYPE}} {{QT_VERSION}}"
|
script: "CI/ci-linux-test.sh"
|
||||||
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
#image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- stretch
|
- stretch
|
||||||
- MultiThreads
|
- MultiThreads
|
||||||
|
variables:
|
||||||
|
COMPILER: "{{COMPILER}}"
|
||||||
|
LANGUAGE: "{{LANGUAGE}}"
|
||||||
|
BUILD_TYPE: "{{BUILDTYPE}}"
|
||||||
|
QTVERSION: "{{QT_VERSION}}"
|
||||||
|
IWYU: "no"
|
||||||
dependencies: [build-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}]
|
dependencies: [build-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}]
|
||||||
needs: [build-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}]
|
needs: [build-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}-{{QT_VERSION}}]
|
||||||
artifacts:
|
artifacts:
|
||||||
|
|||||||
Reference in New Issue
Block a user