Skip to content

Commit

Permalink
Add titles to build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
adamscott committed Aug 22, 2024
1 parent 610584d commit 1a54052
Showing 1 changed file with 3 additions and 0 deletions.
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

0 comments on commit 1a54052

Please sign in to comment.