Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToon Claes <toon@gitlab.com>2023-04-12 13:04:03 +0300
committerToon Claes <toon@gitlab.com>2023-04-14 15:58:58 +0300
commita0dbd18268dd8829f9a705daadf1b8928a3db3c3 (patch)
tree4a1c79e565d771de2ed82a566144ef64001fde8d /.gitlab-ci.yml
parent683033db2043d8b3ad716115a37d0f2af3c86936 (diff)
tools: Rewrite test-boot in Go
Replace the Ruby script _support/test-boot with a small tool written in Go. Issue: https://gitlab.com/gitlab-org/gitaly/-/issues/4636
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4540c2436..728df169c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -166,7 +166,7 @@ build:
# for our "test" targets, which also run unprivileged.
- install --directory --owner=${TEST_UID} --group=${TEST_UID} _build
- setpriv --reuid=${TEST_UID} --regid=${TEST_UID} --clear-groups --no-new-privs make build $(test "${GIT_VERSION}" = default && echo build-bundled-git || echo build-git)
- - _support/test-boot . ${TEST_BOOT_ARGS}
+ - go run ./tools/test-boot ${TEST_BOOT_ARGS} .
parallel:
matrix:
- GO_VERSION: [ "1.18", "1.19" ]