Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions wasm/j2cl-box2d/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

J2CL_REV=fbbe1e6db2928179f5e747ae382266beb3d2db38
set -eo pipefail

# Cleanup old files.
Expand All @@ -10,8 +10,9 @@ BUILD_LOG="$(realpath build.log)"
echo -e "Built on $(date --rfc-3339=seconds)" | tee "$BUILD_LOG"

# Build the benchmark from source.
git clone git@github.com:google/j2cl.git |& tee -a "$BUILD_LOG"
git clone https://github.com/google/j2cl.git |& tee -a "$BUILD_LOG"
pushd j2cl/
git checkout $J2CL_REV
git log -1 --oneline | tee -a "$BUILD_LOG"
git apply ../add-fixed-run-count-api.patch | tee -a "$BUILD_LOG"
BUILD_SRC_DIR="benchmarking/java/com/google/j2cl/benchmarks/octane/"
Expand Down