Skip to content
Snippets Groups Projects
Commit b8061ca1 authored by Martin Wölzer's avatar Martin Wölzer
Browse files

.gitlab-ci/install.yml: introduced file

parent 535d8aad
No related branches found
No related tags found
1 merge request!24Create release v.0.6.0
......@@ -3,6 +3,7 @@ stages:
- check
- build
- test
- install
variables:
GIT_STRATEGY: clone
......@@ -12,3 +13,4 @@ include:
- local: /.gitlab-ci/check.yml
- local: /.gitlab-ci/build.yml
- local: /.gitlab-ci/test.yml
- local: /.gitlab-ci/install.yml
.install_matrix_template_amd64_ubuntu_24.04:
dependencies: []
parallel:
matrix:
- BUILD_TYPE:
- "Debug"
- "Release"
GENERATOR:
- "Ninja"
COMPILER:
- "clang"
COMPILER_VERSION:
- 17
- BUILD_TYPE:
- "Debug"
- "Release"
GENERATOR:
- "Ninja"
COMPILER:
- "gcc"
COMPILER_VERSION:
- 14
tags:
- compiler
- ubuntu-24.04-amd64
.install_template:
stage: install
variables:
GIT_SUBMODULE_STRATEGY: recursive
script:
- .ci/build/build.sh --compiler "${COMPILER}" --compiler-version "${COMPILER_VERSION}" --build-type "${BUILD_TYPE}" --generator "${GENERATOR}" --verbose --install
- export LD_LIBRARY_PATH="/usr/local/lib"
- /usr/local/bin/libclapp_tests
install_matrix_amd64_ubuntu_24.04:
extends:
- .install_template
- .install_matrix_template_amd64_ubuntu_24.04
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment