Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions build-android/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ tar xf /root/godot.tar.gz --strip-components=1
# as well as signing and publishing to MavenCentral.
source /root/keystore/config.sh

# Temporary, until we make new build containers.
dnf install -y java-17-openjdk-devel

store_release="yes"
if [ -z "${GODOT_ANDROID_SIGN_KEYSTORE}" ]; then
echo "No keystore provided to sign the Android release editor build, using debug build instead."
Expand Down
1 change: 1 addition & 0 deletions build-android/upload-mavencentral.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ${PODMAN} run -it --rm \
-v ${basedir}/out/android/source:/root/godot -v ${basedir}/deps/keystore:/root/keystore \
localhost/godot-android:${IMAGE_VERSION} bash -c \
"source /root/keystore/config.sh && \
dnf install -y java-17-openjdk-devel && \
cp -r /root/godot/.gradle /root && \
cd /root/godot/platform/android/java && \
./gradlew publishTemplateReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository"
2 changes: 1 addition & 1 deletion build-web/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -e
# we run all builds in parallel each from their own folder.
export NUM_JOBS=5
declare -a JOBS=(
"target=editor use_closure_compiler=yes"
"target=editor use_closure_compiler=no"
"target=template_debug"
"target=template_release"
"target=template_debug dlink_enabled=yes"
Expand Down