From 0a138b6c165131645a45c624323116c2665c8386 Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <joscha@schmiedt.dev> Date: Wed, 14 Aug 2024 09:11:14 +0200 Subject: [PATCH] PIPELINE: Add vcpkg build --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3bea0c5..1dac085 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -81,6 +81,14 @@ code_style: - clang-format-11 --dry-run --verbose --Werror $(find test/ src/ include/ -type f -iname "*.cpp" -o -iname "*.h" -o -iname "*.h.in") allow_failure: true + +# build with vcpkg +test: + tags: [ docker ] + stage: test + script: + - make vcpkg-build-release + # unit tests with gtest test: tags: [ docker ] -- GitLab