File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ tar xf /root/godot.tar.gz --strip-components=1
18
18
# as well as signing and publishing to MavenCentral.
19
19
source /root/keystore/config.sh
20
20
21
+ # Temporary, until we make new build containers.
22
+ dnf install -y java-17-openjdk-devel
23
+
21
24
store_release=" yes"
22
25
if [ -z " ${GODOT_ANDROID_SIGN_KEYSTORE} " ]; then
23
26
echo " No keystore provided to sign the Android release editor build, using debug build instead."
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ ${PODMAN} run -it --rm \
13
13
-v ${basedir} /out/android/source:/root/godot -v ${basedir} /deps/keystore:/root/keystore \
14
14
localhost/godot-android:${IMAGE_VERSION} bash -c \
15
15
" source /root/keystore/config.sh && \
16
+ dnf install -y java-17-openjdk-devel && \
16
17
cp -r /root/godot/.gradle /root && \
17
18
cd /root/godot/platform/android/java && \
18
19
./gradlew publishTemplateReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository"
Original file line number Diff line number Diff line change 8
8
# we run all builds in parallel each from their own folder.
9
9
export NUM_JOBS=5
10
10
declare -a JOBS=(
11
- " target=editor use_closure_compiler=yes "
11
+ " target=editor use_closure_compiler=no "
12
12
" target=template_debug"
13
13
" target=template_release"
14
14
" target=template_debug dlink_enabled=yes"
You can’t perform that action at this time.
0 commit comments