Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,15 @@ jobs:
run: ./scripts/clippy.sh

test:
needs: [detect-changes, fmt, clippy, generate-test-artifacts, build-katana-binary-ubuntu, build-katana-binary-macos]
needs:
[
detect-changes,
fmt,
clippy,
generate-test-artifacts,
build-katana-binary-ubuntu,
build-katana-binary-macos,
]
runs-on: ${{ matrix.runner }}
timeout-minutes: ${{ matrix.os == 'macos' && 60 || 30 }}
strategy:
Expand Down Expand Up @@ -608,7 +616,6 @@ jobs:
saya-tee-e2e:
needs: [detect-changes, fmt, clippy, generate-test-artifacts]
runs-on: ubuntu-latest-32-cores
timeout-minutes: 45
if: |
needs.detect-changes.outputs.broader-rust == 'true' &&
(github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.draft == false))
Expand Down Expand Up @@ -637,7 +644,7 @@ jobs:
- name: Clone Saya repository
run: |
git clone https://github.com/dojoengine/saya /tmp/saya
git -C /tmp/saya checkout 5a3b8c9
git -C /tmp/saya checkout 17c0ee0

- uses: software-mansion/setup-scarb@v1
with:
Expand Down
148 changes: 127 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ starknet_api = { git = "https://github.com/dojoengine/sequencer", rev = "d2591bb

cainome = { git = "https://github.com/cartridge-gg/cainome", rev = "7d60de1", features = [ "abigen-rs" ] }
cainome-cairo-serde = { git = "https://github.com/cartridge-gg/cainome", rev = "7d60de1" }
piltover = { git = "https://github.com/kariy/piltover.git", branch = "feat/rpc0.9" }
piltover = { git = "https://github.com/cartridge-gg/piltover.git", branch = "feat/tee-persistent" }

# paymaster
paymaster-rpc = { git = "https://github.com/cartridge-gg/paymaster", rev = "d89b5d2" } # branch = main
Expand Down
1 change: 1 addition & 0 deletions bin/katana/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ katana-db = { workspace = true, features = [ "arbitrary" ] }
katana-genesis.workspace = true
katana-primitives.workspace = true
katana-provider.workspace = true
katana-rpc-api.workspace = true
katana-rpc-types.workspace = true
katana-starknet.workspace = true
katana-utils.workspace = true
Expand Down
Loading
Loading