Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
Bioblaze committed Oct 26, 2024
1 parent cf8da5d commit 21a101b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
7 changes: 0 additions & 7 deletions images/32bit.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,11 @@ RUN cd /root/buildroot && \
config_file="config-godot-$arch"; \
cp $config_file .config && \
make olddefconfig && \

# Clean up any previous builds
echo "::debug::Removing previous output directory for clean build" && \
rm -rf output && mkdir output && \

echo "Starting clean build for $arch..." && \
make clean sdk && \

# Determine correct naming for the SDK output directory and tar file
if [ "$arch" = "armv7" ]; then \
sdk_output_dir="/root/${arch}-godot-linux-gnueabihf_sdk"; \
Expand All @@ -126,9 +123,7 @@ RUN cd /root/buildroot && \
sdk_output_dir="/root/${arch}-godot-linux-gnu_sdk"; \
sdk_file="${arch}-godot-linux-gnu_sdk-buildroot.tar.gz"; \
fi; \

echo "::debug::Setting sdk_output_dir to ${sdk_output_dir} and sdk_file to ${sdk_file}" && \

# Move and extract SDK to the specified output directory
if [ -f "output/images/${sdk_file}" ]; then \
echo "::group::Extracting SDK for $arch" && \
Expand All @@ -143,11 +138,9 @@ RUN cd /root/buildroot && \
else \
echo "::warning::SDK file for $arch not found. Skipping extraction step." && \
fi; \

echo "::notice::SDK for $arch built and extracted to ${sdk_output_dir}" && \
echo "::endgroup::" && \
done && \

# Log summary of all output directories
echo "::group::SDK Build Summary" && \
echo "SDKs have been built for the following architectures and are located at:" && \
Expand Down
7 changes: 0 additions & 7 deletions images/64bit.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,11 @@ RUN cd /root/buildroot && \
config_file="config-godot-$arch"; \
cp $config_file .config && \
make olddefconfig && \

# Clean up any previous builds
echo "::debug::Removing previous output directory for clean build" && \
rm -rf output && mkdir output && \

echo "Starting clean build for $arch..." && \
make clean sdk && \

# Determine correct naming for the SDK output directory and tar file
if [ "$arch" = "armv7" ]; then \
sdk_output_dir="/root/${arch}-godot-linux-gnueabihf_sdk"; \
Expand All @@ -119,9 +116,7 @@ RUN cd /root/buildroot && \
sdk_output_dir="/root/${arch}-godot-linux-gnu_sdk"; \
sdk_file="${arch}-godot-linux-gnu_sdk-buildroot.tar.gz"; \
fi; \

echo "::debug::Setting sdk_output_dir to ${sdk_output_dir} and sdk_file to ${sdk_file}" && \

# Move and extract SDK to the specified output directory
if [ -f "output/images/${sdk_file}" ]; then \
echo "::group::Extracting SDK for $arch" && \
Expand All @@ -136,11 +131,9 @@ RUN cd /root/buildroot && \
else \
echo "::warning::SDK file for $arch not found. Skipping extraction step." && \
fi; \

echo "::notice::SDK for $arch built and extracted to ${sdk_output_dir}" && \
echo "::endgroup::" && \
done && \

# Log summary of all output directories
echo "::group::SDK Build Summary" && \
echo "SDKs have been built for the following architectures and are located at:" && \
Expand Down

0 comments on commit 21a101b

Please sign in to comment.