Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Nov 28, 2024
1 parent 3160032 commit cda72a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
timeout-minutes: 20
strategy:
matrix:
target: ["native", "cannon", "asterisc"]
target: ["native", "mips32", "riscv64g"]
name: lint-${{ matrix.target }}
steps:
- name: Checkout sources
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
timeout-minutes: 20
strategy:
matrix:
target: ["native", "cannon", "asterisc"]
target: ["native", "mips32", "riscv64g"]
name: build-${{ matrix.target }}
continue-on-error: true
steps:
Expand Down
6 changes: 3 additions & 3 deletions bin/client/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ run-client-asterisc block_number l1_rpc l1_beacon_rpc l2_rpc rollup_node_rpc ver
OP_NODE_ADDRESS="{{rollup_node_rpc}}"

HOST_BIN_PATH="./target/release/kona-host"
CLIENT_BIN_PATH="./target/riscv64gc-unknown-none-elf/release-client-lto/kona"
CLIENT_BIN_PATH="./target/riscv64g-unknown-none-elf/release-client-lto/kona"
STATE_PATH="./state.bin.gz"

CLAIMED_L2_BLOCK_NUMBER={{block_number}}
Expand All @@ -34,7 +34,7 @@ run-client-asterisc block_number l1_rpc l1_beacon_rpc l2_rpc rollup_node_rpc ver
cd $(git rev-parse --show-toplevel)

echo "Building client program for RISC-V target..."
just build-asterisc --bin kona --profile release-client-lto
just build-riscv64g --bin kona --profile release-client-lto

echo "Loading client program into Asterisc state format..."
asterisc load-elf --path=$CLIENT_BIN_PATH
Expand Down Expand Up @@ -147,7 +147,7 @@ run-client-asterisc-offline block_number l2_claim l2_output_root l2_head l1_head
cd $(git rev-parse --show-toplevel)

echo "Building client program for RISC-V target..."
just build-asterisc --bin kona --profile release-client-lto
just build-riscv64g --bin kona --profile release-client-lto

echo "Loading client program into Asterisc state format..."
asterisc load-elf --path=$CLIENT_BIN_PATH
Expand Down

0 comments on commit cda72a7

Please sign in to comment.