Skip to content

Commit 6ee73b4

Browse files
committed
Build fibers branch on loom
1 parent da501e1 commit 6ee73b4

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

scripts/config.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ elif [ "$JDKVER" == "loom" ] || [ "$JDKVER" == "tip" ]; then
287287
VERSION_POLICY="latest_commit"
288288
VERSION_SUFFIX="ev3-loom-experimental"
289289
JAVA_REPO="https://github.com/openjdk/loom.git"
290+
JAVA_BRANCH="fibers"
290291
else
291292
VERSION_POLICY="latest_tag"
292293
JAVA_REPO="https://github.com/openjdk/jdk.git"

scripts/fetch.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ if [ ! -d "$JDKDIR" ]; then
5858
SUFFIX="$VERSION_SUFFIX"
5959
fi
6060

61+
# override branch
62+
if [ ! -z "$JAVA_BRANCH" ]; then
63+
JAVA_TARGET="$JAVA_BRANCH"
64+
fi
65+
6166
# download it
6267
echo "[FETCH] Cloning Java repo from Git"
6368
echo "[FETCH] - repo url: $JAVA_REPO"

0 commit comments

Comments
 (0)