We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da501e1 commit 6ee73b4Copy full SHA for 6ee73b4
2 files changed
scripts/config.sh
@@ -287,6 +287,7 @@ elif [ "$JDKVER" == "loom" ] || [ "$JDKVER" == "tip" ]; then
287
VERSION_POLICY="latest_commit"
288
VERSION_SUFFIX="ev3-loom-experimental"
289
JAVA_REPO="https://github.com/openjdk/loom.git"
290
+ JAVA_BRANCH="fibers"
291
else
292
VERSION_POLICY="latest_tag"
293
JAVA_REPO="https://github.com/openjdk/jdk.git"
scripts/fetch.sh
@@ -58,6 +58,11 @@ if [ ! -d "$JDKDIR" ]; then
58
SUFFIX="$VERSION_SUFFIX"
59
fi
60
61
+ # override branch
62
+ if [ ! -z "$JAVA_BRANCH" ]; then
63
+ JAVA_TARGET="$JAVA_BRANCH"
64
+ fi
65
+
66
# download it
67
echo "[FETCH] Cloning Java repo from Git"
68
echo "[FETCH] - repo url: $JAVA_REPO"
0 commit comments