-
Notifications
You must be signed in to change notification settings - Fork 123
/
build.sh
executable file
·52 lines (41 loc) · 2.15 KB
/
build.sh
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
set -e
cd "$(dirname "$0")"
echo "Building the workspace packages (with all extended features)..."
(set -x; cargo build)
(set -x; cargo test --no-run)
(set -x; cargo bench --no-run)
echo "Building the radix-clis packages..."
(set -x; cd radix-clis; cargo build)
(set -x; cd radix-clis; cargo test --no-run)
echo "Building the engine in different configurations..."
(set -x; cd radix-engine; cargo build --no-default-features --features alloc,lru)
(set -x; cd radix-engine; cargo build --features wasmer,resource_tracker)
# We use a globally loaded scrypto CLI so that this script works even if the code doesn't compile at present
# It's also a little faster. If you wish to use the local version instead, swap out the below line.
# scrypto="cargo run --manifest-path $PWD/radix-clis/Cargo.toml --bin scrypto $@ --"
scrypto="scrypto"
echo "Building scrypto packages used in tests..."
(
find "radix-engine-tests/tests/blueprints" -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \) -print \
| awk '{print substr($1, 1, length($1)-length("Cargo.toml"))}' \
| xargs -I '{}' bash -c "set -x; $scrypto build --path {}"
)
(
find "radix-clis/tests" -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \) -print \
| awk '{print substr($1, 1, length($1)-length("Cargo.toml"))}' \
| xargs -I '{}' bash -c "set -x; $scrypto build --path {}"
)
echo "Building assets and examples..."
(
find "assets/blueprints" -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \) -print \
| awk '{print substr($1, 1, length($1)-length("Cargo.toml"))}' \
| xargs -I '{}' bash -c "set -x; $scrypto build --path {}"
)
# Note - We use a slightly different formulation for the scrypto build line so that scrypto build picks up the `rust-toolchain` file and compiles with nightly
# This is possibly a rustup bug where it doesn't look for the toolchain file correctly (https://rust-lang.github.io/rustup/overrides.html) when using the `--manifest-path` flag
(
find "examples" -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \) -print \
| awk '{print substr($1, 1, length($1)-length("Cargo.toml"))}' \
| xargs -I '{}' bash -c "set -x; cd '{}'; $scrypto build"
)