[3.5] Backport DefaultSnapshotCount 10K #14208
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: grpcProxy-tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
target: | |
- linux-amd64-grpcproxy | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "1.16.15" | |
- run: date | |
- env: | |
TARGET: ${{ matrix.target }} | |
run: | | |
echo "${TARGET}" | |
case "${TARGET}" in | |
linux-amd64-grpcproxy) | |
PASSES='build grpcproxy' CPU='4' COVER='false' RACE='true' ./test.sh 2>&1 | tee test.log | |
! egrep "(--- FAIL:|DATA RACE|panic: test timed out|appears to have leaked)" -B50 -A10 test.log | |
;; | |
*) | |
echo "Failed to find target" | |
exit 1 | |
;; | |
esac |