We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 610584d commit 1a54052Copy full SHA for 1a54052
build.sh
@@ -40,9 +40,11 @@ fi
40
41
mkdir -p logs
42
43
+printf "\n=> Building godot-%s\n" "fedora"
44
"$podman" build -t godot-fedora:${img_version} -f Dockerfile.base . 2>&1 | tee logs/base.log
45
46
podman_build() {
47
+ printf "\n=> Building godot-%s\n" "$1"
48
# You can add --no-cache as an option to podman_build below to rebuild all containers from scratch.
49
"$podman" build \
50
--build-arg img_version=${img_version} \
@@ -71,6 +73,7 @@ if [ ! -e "${files_root}"/MacOSX${OSX_SDK}.sdk.tar.xz ] || [ ! -e "${files_root}
71
73
72
74
echo "Building OSX and iOS SDK packages. This will take a while"
75
podman_build xcode
76
+ printf "\n=> Running godot-%s\n" "xcode"
77
"$podman" run -it --rm \
78
-v "${files_root}":/root/files:z \
79
-e XCODE_SDKV="${XCODE_SDK}" \
0 commit comments