This script is (IMO) more readable, but the real reason for this change is that it raises an error message when the binary package fails to download. (The shell script silently generated a bogus hash instead, because the shell's `set -e` builtin does not affect commands executing inside a $() context. It seemed just as easy to rewrite the script in Python as to fix that. This change also updates some outdated filename references.
29 lines
835 B
Bash
Executable File
29 lines
835 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "test bazel"
|
|
|
|
set -x
|
|
set -e
|
|
|
|
# Get the latest version number from emscripten-releases-tag.json.
|
|
VER=$(ggrep -oP '(?<=latest\": \")([\d\.]+)(?=\")' \
|
|
emscripten-releases-tags.json \
|
|
| sed "s/\./\\\./g")
|
|
# Based on the latest version number, get the commit hash for that version.
|
|
HASH=$(grep "\"${VER}\"" emscripten-releases-tags.json \
|
|
| grep -v latest \
|
|
| cut -f4 -d\")
|
|
|
|
FAILMSG="!!! scripts/update_bazel_workspace.py needs to be run !!!"
|
|
|
|
# Ensure the WORKSPACE file is up to date with the latest version.
|
|
grep ${VER} bazel/revisions.bzl || (echo ${FAILMSG} && false)
|
|
grep ${HASH} bazel/revisions.bzl || (echo ${FAILMSG} && false)
|
|
|
|
cd bazel
|
|
bazel build //hello-world:hello-world-wasm
|
|
bazel build //hello-world:hello-world-wasm-simd
|
|
|
|
cd test_external
|
|
bazel build //:hello-world-wasm
|