Skip to content

Commit

Permalink
Fix CI paths
Browse files Browse the repository at this point in the history
  • Loading branch information
DelevoXDG committed Sep 14, 2023
1 parent 90ea5f5 commit 554ed68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Build devnet
run: |
if [[ ! -d "$DEVNET_BUILD_PATH" ]]; then
if [[ ! -d ${{ github.workspace }}/starknet-devnet-rs/target/release ]]; then
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
pushd ${{ github.workspace }}/starknet-devnet-rs
cargo build --release
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Run tests
run: |
export DEVNET_PATH="$DEVNET_BUILD_PATH"
export SCARB_PATH=$(which scarb)
export DEVNET_PATH=${{ github.workspace }}/starknet-devnet-rs/target/release/starknet-devnet
export SCARB_PATH="$(which scarb)"
export SNCAST_PATH="$(which sncast)"
swift test --disable-sandbox

0 comments on commit 554ed68

Please sign in to comment.