Skip to content

Commit

Permalink
Fix wasm build in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
maurolacy committed Mar 9, 2021
1 parent 9455f2b commit 96869be
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,12 @@ jobs:
command: rustup target add wasm32-unknown-unknown
- run:
name: Build Wasm Release
command: cargo build --release --target wasm32-unknown-unknown --locked
command: |
for C in ./contracts/*/
do
echo -n "Compiling `basename $C`... "
(cd $C && cargo build --release --target wasm32-unknown-unknown --locked)
done
- run:
name: Install check_contract
# Uses --debug for compilation speed
Expand Down

0 comments on commit 96869be

Please sign in to comment.