Skip to content

Commit

Permalink
Merge branch 'relay' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
nategraf authored Feb 27, 2024
2 parents 95e19de + d41f9e9 commit 16b1716
Show file tree
Hide file tree
Showing 21 changed files with 845 additions and 338 deletions.
1 change: 0 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ rustflags = [
"-Doverflowing_literals",
"-Dpath_statements",
"-Dpatterns_in_fns_without_body",
"-Dprivate_in_public",
"-Dtrivial_casts",
"-Dtrivial_numeric_casts",
"-Dunconditional_recursion",
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ concurrency:

env:
RUST_BACKTRACE: "1"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RISC0_VERSION: 0.20.1
RISC0_TOOLCHAIN_VERSION: test-release-2

jobs:
integration:
Expand All @@ -39,13 +42,12 @@ jobs:
uses: risc0/cargo-install@v1
with:
crate: cargo-binstall
version: "1.4"

- name: Cargo binstall cargo-risczero
run: cargo binstall -y --force cargo-risczero@0.19.1
run: cargo binstall -y --force cargo-risczero@${{ env.RISC0_VERSION }}

- name: risczero toolchain install
run: cargo risczero install
run: cargo risczero install --version $RISC0_TOOLCHAIN_VERSION

- name: build solidity contracts
run: forge build
Expand Down Expand Up @@ -79,13 +81,12 @@ jobs:
uses: risc0/cargo-install@v1
with:
crate: cargo-binstall
version: "1.4"

- name: Cargo binstall cargo-risczero
run: cargo binstall -y --force cargo-risczero@0.19.1
run: cargo binstall -y --force cargo-risczero@${{ env.RISC0_VERSION }}

- name: risczero toolchain install
run: cargo risczero install
run: cargo risczero install --version $RISC0_TOOLCHAIN_VERSION

- name: build solidity contracts
run: forge build
Expand Down
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ out/
/broadcast/*/11155111/
/broadcast/**/dry-run/

# Docs
docs/

# Dotenv file
.env

Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
[submodule "lib/risc0"]
path = lib/risc0
url = https://github.com/risc0/risc0
branch = "release-0.19"
branch = "release-0.20"
Loading

0 comments on commit 16b1716

Please sign in to comment.