Beginned with new building system .gitlab-ci.yml can now be generated by the script assemble-gitlab-ci.py. Therefore the .gitlab-ci.yml configuration file can be split into several smaller files
421 lines
9.2 KiB
YAML
421 lines
9.2 KiB
YAML
#############################################################
|
|
# #
|
|
# This is an auto generated file. Do not make #
|
|
# changes to this file. They possible will be overriden. #
|
|
# #
|
|
# To make persistent changes changes files in #
|
|
# ./CI/gitlab-ci/ ... #
|
|
# and regenerate this file with the configuration tool #
|
|
# #
|
|
#############################################################
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
- deploy
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
# -----------------
|
|
# Linux tasks
|
|
# -----------------
|
|
|
|
cppcheck:
|
|
stage: build
|
|
script: "CI/ci-cppcheck.sh"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
artifacts:
|
|
paths:
|
|
- cppcheck.log
|
|
|
|
gcc-c++11-test-debug:
|
|
stage: test
|
|
script: "CI/ci-linux-test.sh gcc C++11 debug"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
|
|
|
|
gcc-c++11-test-release:
|
|
stage: test
|
|
script: "CI/ci-linux-test.sh gcc C++11 release"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
|
|
gcc-c++11-build-debug:
|
|
stage: build
|
|
script: "CI/ci-linux-build.sh gcc C++11 debug"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
artifacts:
|
|
paths:
|
|
- build-debug-gcc-cpp11-Vector-Checks/
|
|
|
|
gcc-c++11-build-release:
|
|
stage: build
|
|
script: "CI/ci-linux-build.sh gcc C++11 release"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
artifacts:
|
|
paths:
|
|
- build-release-gcc-cpp11-Vector-Checks/
|
|
|
|
clang-c++11-test-debug:
|
|
stage: test
|
|
script: "CI/ci-linux-test.sh clang C++11 debug"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
|
|
clang-c++11-test-release:
|
|
stage: test
|
|
script: "CI/ci-linux-test.sh clang C++11 release"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
|
|
clang-c++11-build-debug:
|
|
stage: build
|
|
script: "CI/ci-linux-build.sh clang C++11 debug"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
artifacts:
|
|
paths:
|
|
- build-debug-clang-cpp11-Vector-Checks/
|
|
|
|
clang-c++11-build-release:
|
|
stage: build
|
|
script: "CI/ci-linux-build.sh clang C++11 release"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
artifacts:
|
|
paths:
|
|
- build-release-clang-cpp11-Vector-Checks/
|
|
|
|
gcc-c++14-test-debug:
|
|
stage: test
|
|
script: "CI/ci-linux-test.sh gcc C++14 debug"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
|
|
gcc-c++14-test-release:
|
|
stage: test
|
|
script: "CI/ci-linux-test.sh gcc C++14 release"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
|
|
gcc-c++14-build-debug:
|
|
stage: build
|
|
script: "CI/ci-linux-build.sh gcc C++14 debug"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
artifacts:
|
|
paths:
|
|
- build-debug-gcc-cpp14-Vector-Checks/
|
|
|
|
gcc-c++14-build-release:
|
|
stage: build
|
|
script: "CI/ci-linux-build.sh gcc C++14 release"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
artifacts:
|
|
paths:
|
|
- build-release-gcc-cpp14-Vector-Checks/
|
|
|
|
clang-c++14-test-debug:
|
|
stage: test
|
|
script: "CI/ci-linux-test.sh clang C++14 debug"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
|
|
clang-c++14-test-release:
|
|
stage: test
|
|
script: "CI/ci-linux-test.sh clang C++14 release"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
|
|
clang-c++14-build-debug:
|
|
stage: build
|
|
script: "CI/ci-linux-build.sh clang C++14 debug"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
artifacts:
|
|
paths:
|
|
- build-debug-clang-cpp14-Vector-Checks/
|
|
|
|
clang-c++14-build-release:
|
|
stage: build
|
|
script: "CI/ci-linux-build.sh clang C++14 release"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
artifacts:
|
|
paths:
|
|
- build-release-clang-cpp14-Vector-Checks/
|
|
|
|
# -----------------
|
|
# Apple tasks
|
|
# -----------------
|
|
|
|
macos-cpp11-debug:
|
|
stage: build
|
|
script: "CI/ci-mac-build.sh C++11 debug ; CI/ci-mac-test.sh C++11 debug"
|
|
tags:
|
|
- Apple
|
|
|
|
macos-cpp14-debug:
|
|
stage: build
|
|
script: "CI/ci-mac-build.sh C++14 debug ; CI/ci-mac-test.sh C++14 debug"
|
|
tags:
|
|
- Apple
|
|
|
|
macos-cpp11-release:
|
|
stage: build
|
|
script: "CI/ci-mac-build.sh C++11 release ; CI/ci-mac-test.sh C++11 release"
|
|
tags:
|
|
- Apple
|
|
artifacts:
|
|
paths:
|
|
- build-release-cpp11/*.dmg
|
|
- build-release-cpp11/*.tar.gz
|
|
|
|
macos-cpp14-release:
|
|
stage: build
|
|
script: "CI/ci-mac-build.sh C++14 release ; CI/ci-mac-test.sh C++14 release"
|
|
tags:
|
|
- Apple
|
|
artifacts:
|
|
paths:
|
|
- build-release-cpp14/*.dmg
|
|
- build-release-cpp14/*.tar.gz
|
|
|
|
# -----------------
|
|
# 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
|
|
|
|
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-32-bit-shared-no-apps:
|
|
stage: build
|
|
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:
|
|
stage: build
|
|
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:
|
|
stage: build
|
|
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:
|
|
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-32-bit-shared-apps:
|
|
stage: build
|
|
variables:
|
|
BUILD_PLATFORM: "VS2015"
|
|
ARCHITECTURE: "x32"
|
|
SHARED: "TRUE"
|
|
APPS: "ON"
|
|
script: "CI\\Windows.bat"
|
|
tags:
|
|
- VS2015
|
|
artifacts:
|
|
paths:
|
|
- build-release/*.exe
|
|
|
|
VS2015-32-bit-shared-no-apps:
|
|
stage: build
|
|
variables:
|
|
BUILD_PLATFORM: "VS2015"
|
|
ARCHITECTURE: "x32"
|
|
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
|
|
|
|
VS2015-32-bit-static-apps:
|
|
stage: build
|
|
variables:
|
|
BUILD_PLATFORM: "VS2015"
|
|
ARCHITECTURE: "x32"
|
|
SHARED: "FALSE"
|
|
APPS: "ON"
|
|
script: "CI\\Windows.bat"
|
|
tags:
|
|
- VS2015
|
|
artifacts:
|
|
paths:
|
|
- build-release/*.exe
|
|
|
|
VS2015-32-bit-static-no-apps:
|
|
stage: build
|
|
variables:
|
|
BUILD_PLATFORM: "VS2015"
|
|
ARCHITECTURE: "x32"
|
|
SHARED: "FALSE"
|
|
APPS: "OFF"
|
|
script: "CI\\Windows.bat"
|
|
tags:
|
|
- VS2015
|
|
artifacts:
|
|
paths:
|
|
- build-release/*.exe
|
|
|
|
Doc-publish:
|
|
stage: deploy
|
|
only:
|
|
- master
|
|
script: "CI/ci-doc.sh"
|
|
tags:
|
|
- Linux
|
|
- stretch
|
|
|
|
Sources:
|
|
stage: deploy
|
|
only:
|
|
- master
|
|
script: "CI/ci-source.sh"
|
|
tags:
|
|
- Linux
|
|
- stretch
|
|
artifacts:
|
|
paths:
|
|
- OpenMesh*.zip
|
|
- OpenMesh*.tar.bz2
|
|
- OpenMesh*.tar.gz
|
|
|
|
|