Skip to content

Commit be182f1

Browse files
authored
Merge pull request #88 from godotengine/4.2-beta2-jdk-17
Android: Install JDK 17 needed for 4.2-beta2 and later
2 parents ad9e3b2 + 2c7419a commit be182f1

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

build-android/build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ tar xf /root/godot.tar.gz --strip-components=1
1818
# as well as signing and publishing to MavenCentral.
1919
source /root/keystore/config.sh
2020

21+
# Temporary, until we make new build containers.
22+
dnf install -y java-17-openjdk-devel
23+
2124
store_release="yes"
2225
if [ -z "${GODOT_ANDROID_SIGN_KEYSTORE}" ]; then
2326
echo "No keystore provided to sign the Android release editor build, using debug build instead."

build-android/upload-mavencentral.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ${PODMAN} run -it --rm \
1313
-v ${basedir}/out/android/source:/root/godot -v ${basedir}/deps/keystore:/root/keystore \
1414
localhost/godot-android:${IMAGE_VERSION} bash -c \
1515
"source /root/keystore/config.sh && \
16+
dnf install -y java-17-openjdk-devel && \
1617
cp -r /root/godot/.gradle /root && \
1718
cd /root/godot/platform/android/java && \
1819
./gradlew publishTemplateReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository"

build-web/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -e
88
# we run all builds in parallel each from their own folder.
99
export NUM_JOBS=5
1010
declare -a JOBS=(
11-
"target=editor use_closure_compiler=yes"
11+
"target=editor use_closure_compiler=no"
1212
"target=template_debug"
1313
"target=template_release"
1414
"target=template_debug dlink_enabled=yes"

0 commit comments

Comments
 (0)