Skip to content

Commit

Permalink
Jenkinsfile.verify: remove leftovers from postgres
Browse files Browse the repository at this point in the history
With this build we don't run anything that depends on postgres.

Change-Id: I55187570fb1ce850e95606f7508b013609535c47
  • Loading branch information
mniewrzal committed Feb 12, 2024
1 parent 2d72456 commit 46b7b91
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Jenkinsfile.verify
Expand Up @@ -77,7 +77,6 @@ pipeline {

stage('db') {
steps {
sh 'service postgresql start'
dir('.build') {
sh 'cockroach start-single-node --insecure --store=type=mem,size=2GiB --listen-addr=localhost:26256 --http-addr=localhost:8086 --cache 512MiB --max-sql-memory 512MiB --background'
sh 'cockroach start-single-node --insecure --store=type=mem,size=2GiB --listen-addr=localhost:26257 --http-addr=localhost:8087 --cache 512MiB --max-sql-memory 512MiB --background'
Expand Down Expand Up @@ -168,8 +167,6 @@ pipeline {
sh 'cockroach sql --insecure --host=localhost:26259 -e \'create database testcockroach;\''
sh 'cockroach sql --insecure --host=localhost:26260 -e \'create database testcockroach;\''

sh 'psql -U postgres -c \'create database teststorj;\''

sh 'use-ports -from 1024 -to 10000 &'

sh 'go test -parallel 4 -p 6 -vet=off $COVERFLAGS -timeout 32m -json -race ./... 2>&1 | tee .build/tests.json | xunit -out .build/tests.xml'
Expand Down

0 comments on commit 46b7b91

Please sign in to comment.