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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-05-07 09:45:36 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-05-07 09:46:24 +0300
commite775ff27ce0e6e71cd48bd3babf7e694bf4cd2a5 (patch)
tree0d33f216ff936ccd27500bb356a0e2ba3e141822 /.gitlab-ci.yml
parentce974d3bc4df0b4339e52d9ff1b5142114893db8 (diff)
ci: Use Praefect binary from build directory
Our CI is still using the Praefect binary which we install into the source directory. Convert it to instead use the new location, which is in our build directory.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a63753bb0..968d214fc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -246,8 +246,8 @@ praefect_sql_connect:
# Sanity check: direct ping with psql
- PGPASSWORD=$POSTGRES_PASSWORD psql -h postgres -U $POSTGRES_USER -d $POSTGRES_DB -c 'select now()'
- ruby -rerb -e 'ERB.new(ARGF.read).run' _support/config.praefect.toml.ci-sql-test.erb > config.praefect.toml
- - ./praefect -config config.praefect.toml sql-ping
- - ./praefect -config config.praefect.toml sql-migrate
+ - ./_build/bin/praefect -config config.praefect.toml sql-ping
+ - ./_build/bin/praefect -config config.praefect.toml sql-migrate
praefect_sql_test:
<<: *test_definition