Skip to content

Commit

Permalink
remove build withou wasm flag
Browse files Browse the repository at this point in the history
  • Loading branch information
yanganto committed Feb 13, 2020
1 parent 685a667 commit e30c4d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .maintain/ci/build_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ case $TARGET in
# Without WASM
"native")
rustup target add wasm32-unknown-unknown
SKIP_WASM_BUILD=1 cargo build --release --all --locked "$@"
# There is some issue to build on ci server with SKIP_WASM_BUILD=1
cargo build --release --all --locked "$@"
echo -e "\e[0;32m +-------------+ \n\e[0;32m | Native Pass | \n\e[0;32m +-------------+ \e[0m"
;;

Expand Down
3 changes: 2 additions & 1 deletion .maintain/ci/darwinia_test_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ case $TARGET in
# Without WASM
"native")
rustup target add wasm32-unknown-unknown
SKIP_WASM_BUILD=1 cargo test -p darwinia-${1}
# There is some issue to build on ci server with SKIP_WASM_BUILD=1
cargo test -p darwinia-${1}
echo -e "\e[0;32m +------------+ \n\e[0;32m | ${1} Pass | \n\e[0;32m +------------+ \e[0m"
;;

Expand Down

0 comments on commit e30c4d0

Please sign in to comment.