-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathrun_me.sh
executable file
·48 lines (39 loc) · 1.71 KB
/
run_me.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
#!/usr/bin/env bash
if [[ "$1" == "--local" ]]; then
if [ -z "${WASI_SDK_PATH}" ]; then
echo "WASI_SDK_PATH is required. Download wasi-sdk and set the variable"
exit 1
fi
check() {
if ! command -v $1 &>/dev/null; then
echo "$1 is required. Install it and ensure its on PATH"
exit 1
fi
}
check cmake
check curl
check tar
check gzip
check npm
check node
else
WASI_SDK_VERSION=19.0
WASI_CMD="docker run -t -v$(pwd):/workdir -w /workdir ghcr.io/vmware-labs/wasmlabs/wasi-builder:${WASI_SDK_VERSION}"
NODE_CMD="docker run -t -v$(pwd):/workdir -w /workdir node:16.20"
fi
fail() {
echo "Command failed"
exit 1
}
echo -e "\n\n------------------------------------" | tee -a build.log
echo "$(date +%Y-%m-%dT%H:%M:%S.%6NZ) Running '$0'" | tee -a build.log
echo -e "$(date +%Y-%m-%dT%H:%M:%S.%6NZ) | Building wasm-wrapper-c ${WASI_CMD:+with '$WASI_CMD' }(logs silenced to build.log)..." | tee -a build.log
${WASI_CMD} bash -c "cd wasm-wrapper-c; ./build-wasm.sh --clean >>../build.log 2>&1" || fail
echo -e "$(date +%Y-%m-%dT%H:%M:%S.%6NZ) | Building se2-mock-runtime ${NODE_CMD:+with '$NODE_CMD' }(logs silenced to build.log)..." | tee -a build.log
${NODE_CMD} bash -c "cd se2-mock-runtime; npm i >>../build.log 2>&1" || fail
echo -e "$(date +%Y-%m-%dT%H:%M:%S.%6NZ) | Running se2-mock-runtime ${NODE_CMD:+with '$NODE_CMD' }..." | tee -a build.log
${NODE_CMD} bash -c "cd se2-mock-runtime; set -x; \
node --experimental-wasi-unstable-preview1 . \
--wrapper ../wasm-wrapper-c/target/wasm32-wasi/wasm-wrapper-c.wasm \
--plugin-root ../py-plugin/ \
--python-usr-root ../wasm-wrapper-c/target/wasm32-wasi/deps/"