Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xevisalle committed Nov 26, 2024
1 parent e8f68eb commit 31510f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dusk_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dsherret/rust-toolchain-file@v1
- uses: Swatinem/rust-cache@v2
- run: cargo b --release
- run: cd contract
- run: rustup target add wasm32-unknown-unknown
- run: cargo b --target wasm32-unknown-unknown --release --color=always -Z build-std=core,alloc
- run: cargo b --target wasm32-unknown-unknown --release
- run: cargo t --release

test_no_std:
Expand All @@ -41,8 +41,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dsherret/rust-toolchain-file@v1
- uses: Swatinem/rust-cache@v2
- run: cargo b --release
- run: cd contract
- run: rustup target add wasm32-unknown-unknown
- run: cargo b --target wasm32-unknown-unknown --release --color=always -Z build-std=core,alloc
- run: cargo b --target wasm32-unknown-unknown --release
- run: cargo t --release --no-default-features

0 comments on commit 31510f1

Please sign in to comment.