Skip to content

Commit

Permalink
Merge branch 'main' into 1.81
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger authored Oct 2, 2024
2 parents a3ea6a8 + b0a6b95 commit b45a9be
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 @@ -23,6 +23,7 @@ jobs:
kakarot_scripts: ${{ steps.filter.outputs.kakarot_scripts }}
solidity: ${{ steps.filter.outputs.solidity }}
tests: ${{ steps.filter.outputs.tests }}
makefile: ${{ steps.filter.outputs.makefile }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
Expand All @@ -37,13 +38,16 @@ jobs:
- 'solidity_contracts/**'
tests:
- 'tests/**'
makefile:
- 'Makefile'
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'
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
Expand Down Expand Up @@ -105,7 +109,8 @@ 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'
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

0 comments on commit b45a9be

Please sign in to comment.