From 6f8be44448ebcca18785fce6cbdc4cf9b1361d59 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 21 Jul 2020 01:19:01 +0100 Subject: [PATCH] ci: run benchmark tests as well --- .gitlab-ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3e1a392..cfa8c5f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,7 +15,8 @@ debian sid: script: - meson --werror build/ - ninja -C build/ - - ninja -C build/ test + - meson test -C build/ + - meson test -C build/ --benchmark - ninja -C build/ install artifacts: paths: @@ -51,7 +52,8 @@ debian sid: - cmd.exe /C "C:\BuildTools\Common7\Tools\VsDevCmd.bat -host_arch=amd64 -arch=$env:ARCH && meson --werror build $env:MESON_ARGS && ninja -C build && - ninja -C build test" + meson test -C build && + meson test -C build --benchmark" vs2017 amd64: extends: '.build windows' @@ -80,4 +82,5 @@ msys2: - C:\msys64\usr\bin\bash -c "pacman -Sy --noconfirm --needed mingw-w64-x86_64-toolchain ninja" - C:\msys64\usr\bin\bash -c "meson --werror build $env:MESON_ARGS && ninja -C build && - ninja -C build test" + meson test -C build && + meson test -C build --benchmark" -- 2.7.4