diff options
| author | Patrick Steinhardt <ps@pks.im> | 2026-02-19 07:25:32 +0100 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-02-19 10:22:31 -0800 |
| commit | 055f0b9f325e96d0692f0ee973c6298e303dc923 (patch) | |
| tree | 4fe186f48ddae76f195bac5b947bea19dbf84b7e | |
| parent | 2cca4ef34306c04a8ae891e0ea4a876922069dce (diff) | |
| download | git-055f0b9f325e96d0692f0ee973c6298e303dc923.tar.xz | |
gitlab-ci: use "run-test-slice-meson.sh"
While our GitHub workflow already uses "ci/run-test-slice-meson.sh",
GitLab CI open-codes the parameters. Adapt the latter to also use the
same script so that we always use the same Meson options across both CI
systems.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b419a84e2c..04857b479d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -183,7 +183,8 @@ test:msvc-meson: - job: "build:msvc-meson" artifacts: true script: - - meson test -C build --no-rebuild --print-errorlogs --slice $Env:CI_NODE_INDEX/$Env:CI_NODE_TOTAL + - | + & "C:/Program Files/Git/usr/bin/bash.exe" -l -c 'ci/run-test-slice-meson.sh build $CI_NODE_INDEX $CI_NODE_TOTAL' parallel: 10 artifacts: reports: |
