forked from rustwasm/wee_alloc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcheck.sh
More file actions
executable file
·28 lines (23 loc) · 799 Bytes
/
check.sh
File metadata and controls
executable file
·28 lines (23 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env bash
set -eux
cd $(dirname $0)
cd ./wee_alloc
cargo check
cargo check --target wasm32-unknown-unknown
cargo check --target i686-pc-windows-gnu
cargo check --features size_classes
cargo check --features size_classes --target wasm32-unknown-unknown
cargo check --features size_classes --target i686-pc-windows-gnu
cargo check --no-default-features --features "static_array_backend"
cargo check --no-default-features --features "static_array_backend size_classes"
cd -
cd ./test
cargo check
cargo check --features size_classes
cd -
cd ./example
cargo check
cargo check --features size_classes
cargo check --target wasm32-unknown-unknown
cargo check --features size_classes --target wasm32-unknown-unknown
cd -