We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 453f8ed + 17e3e04 commit b7babdfCopy full SHA for b7babdf
1 file changed
wasm/j2cl-box2d/build.sh
@@ -1,5 +1,5 @@
1
#!/bin/bash
2
-
+J2CL_REV=fbbe1e6db2928179f5e747ae382266beb3d2db38
3
set -eo pipefail
4
5
# Cleanup old files.
@@ -10,8 +10,9 @@ BUILD_LOG="$(realpath build.log)"
10
echo -e "Built on $(date --rfc-3339=seconds)" | tee "$BUILD_LOG"
11
12
# Build the benchmark from source.
13
-git clone git@github.com:google/j2cl.git |& tee -a "$BUILD_LOG"
+git clone https://github.com/google/j2cl.git |& tee -a "$BUILD_LOG"
14
pushd j2cl/
15
+git checkout $J2CL_REV
16
git log -1 --oneline | tee -a "$BUILD_LOG"
17
git apply ../add-fixed-run-count-api.patch | tee -a "$BUILD_LOG"
18
BUILD_SRC_DIR="benchmarking/java/com/google/j2cl/benchmarks/octane/"
0 commit comments