# .gitea/workflows/ci.yaml name: Build and Release on: push: branches: [main, develop] tags: ['*'] env: DOCKER_BUILDKIT: "1" PRODUCT_NAME: "p2pool" PACKAGE_VERSION: "4.15.1" BUILDX_NO_DEFAULT_ATTESTATIONS: "1" jobs: build-and-test: runs-on: ${{ matrix.arch == 'amd64' && 'ubuntu-latest-amd64' || 'ubuntu-latest-arm64' }} strategy: matrix: arch: [amd64, arm64] steps: - uses: actions/checkout@v4 - name: Setup Docker Buildx run: | # 创建 buildx builder(原生构建不需要 QEMU) docker buildx create --use --name native-builder \ --driver docker-container \ --driver-opt network=host \ --driver-opt env.BUILDKIT_STEP_LOG_MAX_SIZE=50000000 \ --driver-opt env.BUILDKIT_STEP_LOG_MAX_SPEED=10000000 \ || true docker buildx inspect --bootstrap - name: Build binaries run: | PLATFORM="linux/${{ matrix.arch }}" P2POOL_VERSION="v${PACKAGE_VERSION}" # 上游 p2pool git tag 带 v 前缀,需补回 echo "🏗️ Building ${PLATFORM} on native ${{ matrix.arch }} runner (musl 纯静态)" # 设置 BuildKit 优化参数 export BUILDKIT_PROGRESS=plain docker buildx build --pull \ --platform ${PLATFORM} \ --build-arg P2POOL_VERSION=${P2POOL_VERSION} \ --output type=local,dest=./output \ -f docker/Dockerfile . - name: Package and test run: | DIR="./output/linux_${{ matrix.arch }}" if [ ! -d "$DIR" ]; then echo "❌ 构建输出目录不存在: $DIR" exit 1 fi TARGZ="${PRODUCT_NAME}-${{ matrix.arch }}-linux-static-${PACKAGE_VERSION}.tar.gz" tar -czf "${TARGZ}" -C "$DIR" . echo "📦 Created package: ${TARGZ}" ls -lh "${TARGZ}" # 快速验证:--help 冒烟 + ldd 纯静态校验(musl 静态可在 glibc runner 直接跑) mkdir -p test && tar -xzf "${TARGZ}" -C test test/p2pool --help >/dev/null 2>&1 && echo "✅ --help OK" || echo "⚠️ --help 退出非0" # ldd 对纯静态二进制返回 exit 1,须先捕获输出再判定(run 块是 bash -e -o pipefail,直接管道会被误杀) LDD_OUT=$(ldd test/p2pool 2>&1 || true) if echo "$LDD_OUT" | grep -qE 'statically linked|not a dynamic executable'; then echo "✅ fully-static(无动态依赖,跨发行版)" else echo "⚠️ 非纯静态:"; echo "$LDD_OUT"; exit 1 fi rm -rf test - name: Build Debian package run: | # 安装 dpkg-deb(如果需要) sudo apt-get update && sudo apt-get install -y dpkg-dev TARGZ="${PRODUCT_NAME}-${{ matrix.arch }}-linux-static-${PACKAGE_VERSION}.tar.gz" echo "📦 Building Debian package for ${{ matrix.arch }}..." chmod +x debian/build-deb.sh ./debian/build-deb.sh ${{ matrix.arch }} ${PACKAGE_VERSION} "${TARGZ}" ls -lh *.deb - uses: https://github.com/ChristopherHX/gitea-upload-artifact@v4 with: name: binaries-${{ matrix.arch }} path: | *.tar.gz *.deb retention-days: 1 release: runs-on: ubuntu-latest-amd64 needs: build-and-test if: startsWith(github.ref, 'refs/tags/') steps: - uses: https://github.com/ChristopherHX/gitea-download-artifact@v4 with: pattern: binaries-* path: ./packages merge-multiple: true - name: Upload packages and create release env: TOKEN: ${{ secrets.BUILD_TOKEN }} TAG: ${{ github.ref_name }} run: | cd packages # 提取仓库信息(移除 https:// 前缀和仓库路径) REGISTRY=$(echo "${{ gitea.server_url }}" | sed 's|https\?://||') OWNER="${{ gitea.repository_owner }}" REPO_NAME=$(echo "${{ gitea.repository }}" | cut -d'/' -f2) VERSION="${TAG#v}" # 包版本:去掉 git tag 的 v 前缀(registry 路径/下载名/Release 标题统一用纯数字) echo "📦 上传包到 Generic Package Registry..." echo " Registry: ${REGISTRY}" echo " Owner: ${OWNER}" echo " Package: ${PRODUCT_NAME}" echo " Version: ${VERSION}" # 上传所有 tar.gz 包到 Generic Package Registry for file in *.tar.gz; do [ ! -f "$file" ] && continue echo " ⬆️ $file" curl -fsSL -X PUT \ -H "Authorization: token ${TOKEN}" \ --upload-file "$file" \ "https://${REGISTRY}/api/packages/${OWNER}/generic/${PRODUCT_NAME}/${VERSION}/$file" || { echo "❌ 上传失败: $file" exit 1 } done # 上传 Debian 包到 Debian Package Registry (通用稳定版) echo "" echo "📦 上传 Debian 包到 Debian Package Registry..." for file in *.deb; do [ ! -f "$file" ] && continue # 上传到 stable (通用稳定版) echo " ⬆️ $file → stable" curl -fsSL -X PUT \ -H "Authorization: token ${TOKEN}" \ --upload-file "$file" \ "https://${REGISTRY}/api/packages/${OWNER}/debian/pool/stable/main/upload" || { echo "❌ Debian 包上传失败: $file (stable)" exit 1 } done # 生成 Release 描述 echo "" echo "📝 生成 Release..." # 拼接 tar.gz 下载链接 ASSETS=$(for f in *.tar.gz; do [ -f "$f" ] || continue echo "- [\`$f\`](https://${REGISTRY}/api/packages/${OWNER}/generic/${PRODUCT_NAME}/${VERSION}/$f)" done) BODY=$(cat <