Skip to content

Commit

Permalink
Merge pull request #14200 from ahrtr/3.4_pipeline_race
Browse files Browse the repository at this point in the history
set RACE as true for linux-amd64-unit and linux-amd64-grpcproxy
  • Loading branch information
serathius authored Jul 8, 2022
2 parents 0c6063f + 8c1c5fe commit 852ac37
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- linux-amd64-integration-2-cpu
- linux-amd64-integration-4-cpu
- linux-amd64-functional
- linux-amd64-unit
- linux-amd64-unit-4-cpu-race
- all-build
- linux-amd64-grpcproxy
- linux-386-unit
Expand Down Expand Up @@ -50,8 +50,8 @@ jobs:
linux-amd64-functional)
./build && GOARCH=amd64 PASSES='functional' ./test
;;
linux-amd64-unit)
GOARCH=amd64 PASSES='unit' RACE='false' ./test
linux-amd64-unit-4-cpu-race)
GOARCH=amd64 PASSES='unit' RACE='true' CPU='4' ./test -p=2
;;
all-build)
GOARCH=amd64 PASSES='build' ./test
Expand All @@ -64,7 +64,7 @@ jobs:
GO_BUILD_FLAGS='-v' GOARCH=s390x ./build
;;
linux-amd64-grpcproxy)
PASSES='build grpcproxy' CPU='4' ./test 2>&1 | tee test.log
PASSES='build grpcproxy' CPU='4' RACE='true' ./test 2>&1 | tee test.log
! egrep "(--- FAIL:|DATA RACE|panic: test timed out|appears to have leaked)" -B50 -A10 test.log
;;
linux-386-unit)
Expand Down

0 comments on commit 852ac37

Please sign in to comment.