From c8dc7befc7a975781b5c23475db733ab05bcfb3b Mon Sep 17 00:00:00 2001 From: Thomas Coratger Date: Wed, 2 Oct 2024 15:37:40 +0200 Subject: [PATCH 1/2] bump katana to v1.0.0-alpha.13 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index afd274914..a0864c654 100644 --- a/Makefile +++ b/Makefile @@ -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 From 667467a6993f1c7914dd2f5ee9bf692f44d5268e Mon Sep 17 00:00:00 2001 From: Thomas Coratger Date: Wed, 2 Oct 2024 16:06:18 +0200 Subject: [PATCH 2/2] fix paths-filter --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e902bfe42..d3f65f0b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 @@ -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