Skip to content

Commit

Permalink
v0.11 (#1419)
Browse files Browse the repository at this point in the history
  • Loading branch information
MauroToscano authored Nov 20, 2024
2 parents 9a3bdec + fecac6f commit 50361b6
Show file tree
Hide file tree
Showing 218 changed files with 15,365 additions and 6,533 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ volume
nonce_*.bin
docker-compose.yaml
.github/**
**.md
**.md
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test-go.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: build-go-projects

on:
merge_group:
push:
branches: [main]
pull_request:
Expand All @@ -23,8 +22,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"
cache: false
- name: foundry-toolchain
uses: foundry-rs/[email protected]
- name: Build SP1 bindings
run: make build_sp1_linux
- name: Build Old SP1 bindings
Expand All @@ -39,4 +40,3 @@ jobs:
run: go build operator/cmd/main.go
- name: Build aggregator
run: go build aggregator/cmd/main.go

3 changes: 2 additions & 1 deletion .github/workflows/build-and-test-rust.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: build-and-test-rust-projects

on:
merge_group:
push:
branches: [main]
pull_request:
Expand Down Expand Up @@ -52,6 +51,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: foundry-toolchain
uses: foundry-rs/[email protected]
- name: Cache Rust dependencies
uses: actions/cache@v3
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/send-proofs-docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "[CI] Send proofs to network"

on:
merge_group:
pull_request:
types:
- opened
Expand All @@ -23,7 +24,7 @@ jobs:

steps:
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/test-go-retries.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: test-go-retries

on:
push:
branches: [main]
pull_request:
branches: ["*"]
paths:
- 'core/**'
- '.github/workflows/test-go-retries.yml'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Clear device space
run: |
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf /usr/local/.ghcup
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
cache: false
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: foundry-toolchain
uses: foundry-rs/[email protected]
- name: Test go Retry Functions
run: make test_go_retries
1 change: 0 additions & 1 deletion .github/workflows/test-merkle-tree.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: test-merkle-tree

on:
merge_group:
push:
branches: [main]
pull_request:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test-risc-zero-old.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: test-risc-zero-old

on:
merge_group:
push:
branches: [main]
pull_request:
Expand All @@ -26,7 +25,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"
cache: false
- uses: actions-rs/toolchain@v1
with:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test-risc-zero.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: test-risc-zero

on:
merge_group:
push:
branches: [main]
pull_request:
Expand All @@ -26,7 +25,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"
cache: false
- uses: actions-rs/toolchain@v1
with:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test-sp1-old.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: test-sp1-old

on:
merge_group:
push:
branches: [main]
pull_request:
Expand All @@ -22,7 +21,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Test Old SP1 Rust
run: make test_sp1_rust_ffi_old
- name: Test Old SP1 go bindings
run: make test_sp1_go_bindings_linux_old
- name: Test Old SP1 Rust
run: make test_sp1_rust_ffi_old
1 change: 0 additions & 1 deletion .github/workflows/test-sp1.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: test-sp1

on:
merge_group:
push:
branches: [main]
pull_request:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ volume
config-files/*.last_processed_batch.json

nonce_*.bin

infra/ansible/playbooks/ini/**.ini
Loading

0 comments on commit 50361b6

Please sign in to comment.