better
Some checks failed
dropshell-build / build (push) Failing after 6s

This commit is contained in:
j842 2025-06-09 17:04:04 +12:00
parent b46e60c407
commit 8cfe46c92c
2 changed files with 33 additions and 3 deletions

View File

@ -14,10 +14,15 @@ RUN apk add --no-cache \
elfutils \
elfutils-dev \
elfutils-libelf \
file \
g++ \
git \
libevent-dev \
libevent-static \
libdwarf \
libdwarf-dev \
libtirpc-dev \
libtirpc-static \
libunwind \
libunwind-dev \
libunwind-static \
@ -31,9 +36,11 @@ RUN apk add --no-cache \
pipx \
pkgconf \
pkgconfig \
rpcgen \
# Removed SQLite3 packages since we'll build it from source
util-linux-dev \
util-linux-static \
wget \
xz \
xz-dev \
xz-libs \
@ -140,11 +147,21 @@ RUN wget https://www.sqlite.org/2024/sqlite-autoconf-3450000.tar.gz && \
# Build MySQL statically
ARG MYSQL_VERSION=8.0.36
WORKDIR /tmp
RUN curl -LO https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-${MYSQL_VERSION}.tar.gz && \
tar xzf mysql-${MYSQL_VERSION}.tar.gz && \
RUN echo "Downloading MySQL ${MYSQL_VERSION}..." && \
wget -O mysql-${MYSQL_VERSION}.tar.gz https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-${MYSQL_VERSION}.tar.gz && \
echo "Extracting MySQL..." && \
tar -xzf mysql-${MYSQL_VERSION}.tar.gz && \
cd mysql-${MYSQL_VERSION} && \
echo "Downloading Boost from archives.boost.io..." && \
mkdir -p boost && \
curl -L https://boostorg.jfrog.io/artifactory/main/release/1.77.0/source/boost_1_77_0.tar.bz2 | tar xj -C boost && \
wget --tries=3 --timeout=30 -O boost_1_77_0.tar.bz2 \
"https://archives.boost.io/release/1.77.0/source/boost_1_77_0.tar.bz2" && \
echo "Verifying Boost download..." && \
file boost_1_77_0.tar.bz2 | grep -q "bzip2 compressed data" || \
(echo "ERROR: Downloaded file is not a valid bzip2 archive" && exit 1) && \
echo "Extracting Boost..." && \
tar -xjf boost_1_77_0.tar.bz2 -C boost --strip-components=1 && \
rm boost_1_77_0.tar.bz2 && \
mkdir build && cd build && \
cmake .. \
-DCMAKE_BUILD_TYPE=Release \

13
build-base/debug-build.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
# Build with progress and no cache to see which step fails
docker build \
--progress=plain \
--no-cache \
-t "gitea.jde.nz/public/dropshell-build-base:latest" \
-f "${SCRIPT_DIR}/Dockerfile.dropshell-build-base" \
${SCRIPT_DIR}