ci: bump test timeout

Currently testing with coverage exceeds the timeout very easily.

Change-Id: I4e77aa98d28bebe373416ac05ee39b4c70c3fed2
This commit is contained in:
Egon Elbre 2021-02-22 17:31:07 +02:00
parent bc68898846
commit a34da8531b

View File

@ -7,7 +7,7 @@ pipeline {
}
}
options {
timeout(time: 26, unit: 'MINUTES')
timeout(time: 36, unit: 'MINUTES')
}
environment {
NPM_CONFIG_CACHE = '/npm/cache'
@ -85,7 +85,7 @@ pipeline {
sh 'psql -U postgres -c \'create database testmetabase;\''
sh 'use-ports -from 1024 -to 10000 &'
sh 'go test -parallel 4 -p 6 -vet=off $COVERFLAGS -timeout 20m -json -race ./... 2>&1 | tee .build/tests.json | xunit -out .build/tests.xml'
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'
sh 'check-clean-directory'
}