Skip to content

Commit

Permalink
Update prover-testing.yml to use ubuntu-latest-128
Browse files Browse the repository at this point in the history
The commit attempts solving the prover CI by using a different commit 

Signed-off-by: AlexandreBelling <[email protected]>
  • Loading branch information
AlexandreBelling authored Sep 12, 2024
1 parent 0cc4d6d commit 4de5d1b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/prover-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
staticcheck:
runs-on: ubuntu-latest
runs-on: ubuntu-latest-128
name: Prover static check
steps:
- name: install Go
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
strategy:
matrix:
go-version: [1.22.x]
os: [ubuntu-latest]
os: [ubuntu-latest-128]
runs-on: ${{ matrix.os }}
name: Prover testing
needs:
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
go test -p=1 -tags=nocorset,fuzzlight -timeout=30m ./...
- name: Test (32 bits & race)
working-directory: prover
if: (matrix.os == 'ubuntu-latest') && (matrix.go-version == '1.20.x')
if: (matrix.os == 'ubuntu-latest-128') && (matrix.go-version == '1.20.x')
run: |
go test -p=1 -tags=nocorset,fuzzlight -timeout=30m -short -race ./...
Expand All @@ -96,7 +96,7 @@ jobs:
needs:
- staticcheck
- test
runs-on: ubuntu-latest
runs-on: ubuntu-latest-128
steps:
- name: Notify slack -- workflow failed
id: slack
Expand All @@ -119,7 +119,7 @@ jobs:
needs:
- staticcheck
- test
runs-on: ubuntu-latest
runs-on: ubuntu-latest-128
steps:
- name: Notify slack -- workflow succeeded
id: slack
Expand Down

0 comments on commit 4de5d1b

Please sign in to comment.