Skip to content

Commit

Permalink
ci: don't run redundant release checks
Browse files Browse the repository at this point in the history
  • Loading branch information
gbotrel committed Dec 1, 2023
1 parent 98a1c52 commit 808a8f4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,12 @@ jobs:
if: startsWith(matrix.os, 'ubuntu') == false
run: |
go test -tags=release_checks -v -timeout=60m .
# go test -tags=release_checks -v -timeout=60m ./frontend/...
# go test -tags=release_checks -v -timeout=60m ./backend/...
# go test -short -v -timeout=60m ./...
- name: Test (ubuntu - race and solc)
if: startsWith(matrix.os, 'ubuntu') == true
run: |
go test -v -p 4 -timeout=120m -tags=release_checks ./...
go test -v -p 4 -short -timeout=30m ./...
go test -v -p 4 -timeout=120m -tags=release_checks ./std/math/emulated/...
go test -v -p 4 -timeout=120m -tags=release_checks ./std/lookup/...
go test -v -p 4 -tags=release_checks,solccheck .
go test -v -p 4 -timeout=50m -tags=release_checks -race ./examples/cubic/...
go test -v -p 4 -timeout=50m -tags=release_checks -short -race ./test/...
Expand Down

0 comments on commit 808a8f4

Please sign in to comment.