Skip to content

Commit

Permalink
github: Don't use make in testing.yaml (#4059)
Browse files Browse the repository at this point in the history
  • Loading branch information
easwars authored Nov 24, 2020
1 parent 8238a33 commit a82c291
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -77,12 +77,12 @@ jobs:
# Main tests run for everything except when testing "extras" and the race detector.
- name: Run tests
if: ${{ matrix.type != 'extras' && matrix.type != 'race' }}
run: make test
run: go test -cpu 1,4 -timeout 7m google.golang.org/grpc/...

# Race detector tests
- name: Run test race
if: ${{ matrix.TYPE == 'race' }}
run: make testrace
run: go test -race -cpu 1,4 -timeout 7m google.golang.org/grpc/...

# Non-core gRPC tests (examples, interop, etc)
- name: Run extras tests
@@ -91,4 +91,5 @@ jobs:
examples/examples_test.sh
security/advancedtls/examples/examples_test.sh
interop/interop_test.sh
make testsubmodule
cd ${GITHUB_WORKSPACE}/security/advancedtls && go test -cpu 1,4 -timeout 7m google.golang.org/grpc/security/advancedtls/...
cd ${GITHUB_WORKSPACE}/security/authorization && go test -cpu 1,4 -timeout 7m google.golang.org/grpc/security/authorization/...

0 comments on commit a82c291

Please sign in to comment.