mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
6a96629d65
* Provide a timeout of 20m for the go IT Default is 10m, see https://golang.org/cmd/go/#hdr-Testing_flags Co-authored-by: Daniel Kurzynski <daniel.kurzynski@sap.com>
7 lines
162 B
Bash
Executable File
7 lines
162 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
pushd ..
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -tags release -o piper
|
|
go test -tags=integration -timeout 20m ./integration/...
|
|
popd
|