Skip to content

Commit

Permalink
Update scripts for Godot 3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Calinou committed Apr 6, 2022
1 parent b4f30ee commit b5a1049
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")"
# See `Dockerfile` for the dependency installation.
docker build -t godot-debug-builder .
docker run --rm --volume "$PWD/bin/linux":/opt/artifacts godot-debug-builder sh -c '
git clone --branch="3.4.2-stable" --depth=1 https://github.com/godotengine/godot.git /opt/godot/
git clone --branch="3.4.3-stable" --depth=1 https://github.com/godotengine/godot.git /opt/godot/
cd /opt/godot/
scons platform=x11 -j$(nproc) debug_symbols=yes progress=no
scons platform=x11 -j$(nproc) debug_symbols=yes progress=no tools=no
Expand Down
2 changes: 1 addition & 1 deletion build_windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:: Clean up old build directly in casse the previous build was aborted.
rmdir /s /q %TEMP%\godot-debug-build

git clone --branch="3.4.2-stable" --depth=1 https://github.com/godotengine/godot.git %TEMP%\godot-debug-build
git clone --branch="3.4.3-stable" --depth=1 https://github.com/godotengine/godot.git %TEMP%\godot-debug-build
pushd %TEMP%\godot-debug-build
scons -j%NUMBER_OF_PROCESSORS% debug_symbols=yes progress=no
scons -j%NUMBER_OF_PROCESSORS% debug_symbols=yes progress=no tools=no
Expand Down
2 changes: 1 addition & 1 deletion compress.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")"

# This script should be run after running both `build_linux.sh` and `build_windows.bat`.

GODOT_VERSION="3.4.2"
GODOT_VERSION="3.4.3"

parallel 7z a -mx9 "{}.zip" "{}" ::: bin/linux/*.64

Expand Down

0 comments on commit b5a1049

Please sign in to comment.