Skip to content

Commit

Permalink
bump rust to 1.81 (#1458)
Browse files Browse the repository at this point in the history
To be able to work with reth at the rpc level and don't have any rust
conflicting version, we should rely on last stable (1.81), as per the
minimal supported version of reth:

https://github.com/paradigmxyz/reth/blob/e2f35ce6df14bb67c19f4f1f7e8f6dde6f1bdffd/Cargo.toml#L4

<!-- Reviewable:start -->
- - -
This change is [<img src="https://reviewable.io/review_button.svg"
height="34" align="absmiddle"
alt="Reviewable"/>](https://reviewable.io/reviews/kkrt-labs/kakarot/1458)
<!-- Reviewable:end -->
  • Loading branch information
tcoratger authored Oct 2, 2024
1 parent b0a6b95 commit 886d039
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
solidity: ${{ steps.filter.outputs.solidity }}
tests: ${{ steps.filter.outputs.tests }}
makefile: ${{ steps.filter.outputs.makefile }}
rust: ${{ steps.filter.outputs.rust }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
Expand All @@ -40,14 +41,17 @@ jobs:
- 'tests/**'
makefile:
- 'Makefile'
rust:
- 'rust-toolchain'
build:
runs-on: ubuntu-latest
needs: paths-filter
if:
needs.paths-filter.outputs.src == 'true' ||
needs.paths-filter.outputs.kakarot_scripts == 'true' ||
needs.paths-filter.outputs.makefile == 'true'
needs.paths-filter.outputs.makefile == 'true' ||
needs.paths-filter.outputs.rust == 'true'
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
Expand Down Expand Up @@ -110,7 +114,8 @@ jobs:
needs.paths-filter.outputs.kakarot_scripts == 'true' ||
needs.paths-filter.outputs.solidity == 'true' ||
needs.paths-filter.outputs.tests == 'true' ||
needs.paths-filter.outputs.makefile == 'true'
needs.paths-filter.outputs.makefile == 'true' ||
needs.paths-filter.outputs.rust == 'true'
steps:
- uses: actions/checkout@v4
- name: Extract Katana Version
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.80.0
1.81.0

0 comments on commit 886d039

Please sign in to comment.