From b662fc1ab23bfb0fa84f7f2940ff6b6664af64ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Niewrza=C5=82?= Date: Fri, 20 May 2022 12:13:35 +0200 Subject: [PATCH] Jenkinsfile: don't create separate db for metabase We don't use separate DB for metabase tests anymore. Change-Id: I31d60aa18aaa11a6facfd2f622b03fcd87d3d18c --- Jenkinsfile.public | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Jenkinsfile.public b/Jenkinsfile.public index cc8be5d50..c9aae3503 100644 --- a/Jenkinsfile.public +++ b/Jenkinsfile.public @@ -195,10 +195,8 @@ pipeline { sh 'cockroach sql --insecure --host=localhost:26259 -e \'create database testcockroach;\'' sh 'cockroach sql --insecure --host=localhost:26260 -e \'create database testcockroach;\'' - sh 'cockroach sql --insecure --host=localhost:26259 -e \'create database testmetabase;\'' - sh 'psql -U postgres -c \'create database teststorj;\'' - sh 'psql -U postgres -c \'create database testmetabase;\'' + sh 'use-ports -from 1024 -to 10000 &' sh 'go test -tags noembed -parallel 4 -p 6 -vet=off $COVERFLAGS -timeout 32m -json -race ./... 2>&1 | tee .build/tests.json | xunit -out .build/tests.xml'