Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

test:
needs: staticcheck
runs-on: ubuntu-latest-128
runs-on: gha-runner-scale-set-ubuntu-24-amd64-xxl
permissions:
pull-requests: write
steps:
Expand Down Expand Up @@ -65,9 +65,9 @@ jobs:
run: |
set -euo pipefail
go test -json -v -p 4 -short -timeout=30m ./... 2>&1 | gotestfmt -hide=all | tee /tmp/gotest.log
go test -json -v -p 4 -tags=release_checks,solccheck . 2>&1 | gotestfmt -hide=all | tee -a /tmp/gotest.log
go test -json -v -p 4 -tags=prover_checks ./test/... 2>&1 | gotestfmt -hide=all | tee -a /tmp/gotest.log
go test -json -v -p 4 -tags=prover_checks ./examples/... 2>&1 | gotestfmt -hide=all | tee -a /tmp/gotest.log
go test -json -v -p 4 -timeout=30m -tags=release_checks,solccheck . 2>&1 | gotestfmt -hide=all | tee -a /tmp/gotest.log
go test -json -v -p 4 -timeout=30m -tags=prover_checks ./test/... 2>&1 | gotestfmt -hide=all | tee -a /tmp/gotest.log
go test -json -v -p 4 -timeout=30m -tags=prover_checks ./examples/... 2>&1 | gotestfmt -hide=all | tee -a /tmp/gotest.log
go test -json -v -run=NONE -fuzz=FuzzIntcomp -fuzztime=30s ./internal/backend/ioutils 2>&1 | gotestfmt -hide=all | tee -a /tmp/gotest.log


Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest-128, windows-latest, macos-latest]
os: [gha-runner-scale-set-ubuntu-24-amd64-xxl, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
needs:
- staticcheck
Expand All @@ -54,7 +54,7 @@ jobs:
go install golang.org/x/tools/cmd/goimports@latest && go install github.com/klauspost/asmfmt/cmd/asmfmt@latest
go install github.com/ethereum/go-ethereum/cmd/[email protected]
- name: install solc deps
if: startsWith(matrix.os, 'ubuntu') == true
if: startsWith(matrix.os, 'gha-runner-scale-set-ubuntu') == true
run: |
go install github.com/consensys/[email protected]
sudo add-apt-repository ppa:ethereum/ethereum
Expand All @@ -63,11 +63,11 @@ jobs:

- name: Test (windows / mac)
# on macOS CI / Windows CI we avoid running the std/ tests (they are run on ubuntu CI)
if: startsWith(matrix.os, 'ubuntu') == false
if: startsWith(matrix.os, 'gha-runner-scale-set-ubuntu') == false
run: |
go test -tags=release_checks -v -timeout=60m .
- name: Test (ubuntu - race and solc)
if: startsWith(matrix.os, 'ubuntu') == true
if: startsWith(matrix.os, 'gha-runner-scale-set-ubuntu') == true
run: |
go test -v -p 4 -short -timeout=30m ./...
go test -v -p 4 -timeout=120m -tags=release_checks ./std/math/emulated/...
Expand Down
Loading