Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add titles to build.sh #148

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,11 @@ fi

mkdir -p logs

printf "\n=> Building godot-%s\n" "fedora"
"$podman" build -t godot-fedora:${img_version} -f Dockerfile.base . 2>&1 | tee logs/base.log

podman_build() {
printf "\n=> Building godot-%s\n" "$1"
# You can add --no-cache as an option to podman_build below to rebuild all containers from scratch.
"$podman" build \
--build-arg img_version=${img_version} \
Expand Down Expand Up @@ -71,6 +73,7 @@ if [ ! -e "${files_root}"/MacOSX${OSX_SDK}.sdk.tar.xz ] || [ ! -e "${files_root}

echo "Building OSX and iOS SDK packages. This will take a while"
podman_build xcode
printf "\n=> Running godot-%s\n" "xcode"
"$podman" run -it --rm \
-v "${files_root}":/root/files:z \
-e XCODE_SDKV="${XCODE_SDK}" \
Expand Down