Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
Merge branch 'main' into cw/fix-rlp-encode-util
Browse files Browse the repository at this point in the history
  • Loading branch information
obatirou authored Oct 2, 2024
2 parents c127f02 + 886d039 commit 7762435
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
kakarot_scripts: ${{ steps.filter.outputs.kakarot_scripts }}
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 @@ -37,13 +39,19 @@ jobs:
- 'solidity_contracts/**'
tests:
- '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.kakarot_scripts == '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 @@ -105,7 +113,9 @@ jobs:
needs.paths-filter.outputs.src == 'true' ||
needs.paths-filter.outputs.kakarot_scripts == 'true' ||
needs.paths-filter.outputs.solidity == 'true' ||
needs.paths-filter.outputs.tests == 'true'
needs.paths-filter.outputs.tests == '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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ endif
KKRT_SSJ_RELEASE_ID = 176384150
# Kakarot SSJ artifacts for precompiles.
KKRT_SSJ_BUILD_ARTIFACT_URL = $(shell curl -L https://api.github.com/repos/kkrt-labs/kakarot-ssj/releases/${KKRT_SSJ_RELEASE_ID} | jq -r '.assets[0].browser_download_url')
KATANA_VERSION = v1.0.0-alpha.12
KATANA_VERSION = v1.0.0-alpha.13
ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))

BUILD_DIR = build
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 7762435

Please sign in to comment.