File: test.sh

package info (click to toggle)
golang-github-googleapis-gax-go 2.14.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 568 kB
  • sloc: sh: 55; makefile: 7
file content (49 lines) | stat: -rwxr-xr-x 987 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash

# Fail on any error
set -eo

# Display commands being run
set -x

# cd to project dir on Kokoro instance
cd github/gax-go

go version

# Set $GOPATH
export GOPATH="$HOME/go"
export PATH="$GOPATH/bin:$PATH"
export GO111MODULE=on

try3() { eval "$*" || eval "$*" || eval "$*"; }

# All packages, including +build tools, are fetched.
try3 go mod download
./internal/kokoro/vet.sh

go get github.com/jstemmer/go-junit-report

set +e

go test -race -v . 2>&1 | tee sponge_log.log
cat sponge_log.log | go-junit-report -set-exit-code > sponge_log.xml
exit_code=$?

cd v2
set -e
try3 go mod download
set +e

go test -race -v . 2>&1 | tee sponge_log.log
cat sponge_log.log | go-junit-report -set-exit-code > sponge_log.xml
exit_code=$(($exit_code+$?))

# Send logs to Flaky Bot for continuous builds.
if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR = *"continuous"* ]]; then
  cd ..
  chmod +x $KOKORO_GFILE_DIR/linux_amd64/flakybot
  $KOKORO_GFILE_DIR/linux_amd64/flakybot
fi

exit $exit_code