Skip to content

Commit 50361b6

Browse files
authored
v0.11 (#1419)
2 parents 9a3bdec + fecac6f commit 50361b6

File tree

218 files changed

+15365
-6533
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+15365
-6533
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ volume
1111
nonce_*.bin
1212
docker-compose.yaml
1313
.github/**
14-
**.md
14+
**.md

.github/workflows/build-and-test-go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: build-go-projects
22

33
on:
4-
merge_group:
54
push:
65
branches: [main]
76
pull_request:
@@ -23,8 +22,10 @@ jobs:
2322
- uses: actions/checkout@v4
2423
- uses: actions/setup-go@v5
2524
with:
26-
go-version: "1.22"
25+
go-version: "1.23"
2726
cache: false
27+
- name: foundry-toolchain
28+
uses: foundry-rs/[email protected]
2829
- name: Build SP1 bindings
2930
run: make build_sp1_linux
3031
- name: Build Old SP1 bindings
@@ -39,4 +40,3 @@ jobs:
3940
run: go build operator/cmd/main.go
4041
- name: Build aggregator
4142
run: go build aggregator/cmd/main.go
42-

.github/workflows/build-and-test-rust.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: build-and-test-rust-projects
22

33
on:
4-
merge_group:
54
push:
65
branches: [main]
76
pull_request:
@@ -52,6 +51,8 @@ jobs:
5251
steps:
5352
- name: Checkout code
5453
uses: actions/checkout@v4
54+
- name: foundry-toolchain
55+
uses: foundry-rs/[email protected]
5556
- name: Cache Rust dependencies
5657
uses: actions/cache@v3
5758
with:

.github/workflows/send-proofs-docker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "[CI] Send proofs to network"
22

33
on:
4+
merge_group:
45
pull_request:
56
types:
67
- opened
@@ -23,7 +24,7 @@ jobs:
2324

2425
steps:
2526
- name: Log in to GitHub Container Registry
26-
uses: docker/login-action@v2
27+
uses: docker/login-action@v3
2728
with:
2829
registry: ghcr.io
2930
username: ${{ github.actor }}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: test-go-retries
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: ["*"]
8+
paths:
9+
- 'core/**'
10+
- '.github/workflows/test-go-retries.yml'
11+
12+
jobs:
13+
test:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Clear device space
17+
run: |
18+
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
19+
sudo rm -rf /usr/local/lib/android
20+
sudo rm -rf /opt/ghc
21+
sudo rm -rf /usr/local/.ghcup
22+
sudo rm -rf /usr/share/dotnet
23+
sudo rm -rf /opt/ghc
24+
sudo rm -rf "/usr/local/share/boost"
25+
- uses: actions/checkout@v4
26+
- uses: actions/setup-go@v5
27+
with:
28+
go-version: '1.22'
29+
cache: false
30+
- uses: actions-rs/toolchain@v1
31+
with:
32+
toolchain: stable
33+
- name: foundry-toolchain
34+
uses: foundry-rs/[email protected]
35+
- name: Test go Retry Functions
36+
run: make test_go_retries

.github/workflows/test-merkle-tree.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: test-merkle-tree
22

33
on:
4-
merge_group:
54
push:
65
branches: [main]
76
pull_request:

.github/workflows/test-risc-zero-old.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: test-risc-zero-old
22

33
on:
4-
merge_group:
54
push:
65
branches: [main]
76
pull_request:
@@ -26,7 +25,7 @@ jobs:
2625
- uses: actions/checkout@v4
2726
- uses: actions/setup-go@v5
2827
with:
29-
go-version: "1.22"
28+
go-version: "1.23"
3029
cache: false
3130
- uses: actions-rs/toolchain@v1
3231
with:

.github/workflows/test-risc-zero.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: test-risc-zero
22

33
on:
4-
merge_group:
54
push:
65
branches: [main]
76
pull_request:
@@ -26,7 +25,7 @@ jobs:
2625
- uses: actions/checkout@v4
2726
- uses: actions/setup-go@v5
2827
with:
29-
go-version: "1.22"
28+
go-version: "1.23"
3029
cache: false
3130
- uses: actions-rs/toolchain@v1
3231
with:

.github/workflows/test-sp1-old.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: test-sp1-old
22

33
on:
4-
merge_group:
54
push:
65
branches: [main]
76
pull_request:
@@ -22,7 +21,7 @@ jobs:
2221
- uses: actions-rs/toolchain@v1
2322
with:
2423
toolchain: stable
25-
- name: Test Old SP1 Rust
26-
run: make test_sp1_rust_ffi_old
2724
- name: Test Old SP1 go bindings
2825
run: make test_sp1_go_bindings_linux_old
26+
- name: Test Old SP1 Rust
27+
run: make test_sp1_rust_ffi_old

.github/workflows/test-sp1.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: test-sp1
22

33
on:
4-
merge_group:
54
push:
65
branches: [main]
76
pull_request:

0 commit comments

Comments
 (0)