From afd0d7d71e1478d8238d85cad3d0dfbbfcef1984 Mon Sep 17 00:00:00 2001 From: gfdgd_xi <3025613752@qq.com> Date: Sat, 9 May 2026 22:40:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=8E=AF=E5=A2=83=E5=8F=98?= =?UTF-8?q?=E9=87=8FDEBIAN=5FFRONTEND=3Dnoninteractive?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: gfdgd_xi <3025613752@qq.com> --- .github/workflows/building-deb-base-arm64.yml | 2 ++ .github/workflows/building-deb-base.yml | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/building-deb-base-arm64.yml b/.github/workflows/building-deb-base-arm64.yml index 3522fe9..b196321 100755 --- a/.github/workflows/building-deb-base-arm64.yml +++ b/.github/workflows/building-deb-base-arm64.yml @@ -98,11 +98,13 @@ jobs: env gitPath=$gitPath bash .github/workflows/run-command-in-chroot.sh \ env GXDE_ARCH=${{ inputs.arch }} GXDE_CODENAME=${{ inputs.gxde-codename }} \ GXDE_ARCH=${{ inputs.arch }} GXDE_CROSS_ARCH=${{ inputs.gxde-cross-arch }} GO111MODULE=off \ + DEBIAN_FRONTEND=noninteractive \ dpkg-buildpackage -b else env gitPath=$gitPath bash .github/workflows/run-command-in-chroot.sh \ env GXDE_ARCH=${{ inputs.arch }} GXDE_CODENAME=${{ inputs.gxde-codename }} \ GXDE_ARCH=${{ inputs.arch }} GXDE_CROSS_ARCH=${{ inputs.gxde-cross-arch }} GO111MODULE=off \ + DEBIAN_FRONTEND=noninteractive \ bash build-deb.sh fi cp $BOTTLEPATH/*.deb . -rv diff --git a/.github/workflows/building-deb-base.yml b/.github/workflows/building-deb-base.yml index 0d2ca6f..30a1c21 100755 --- a/.github/workflows/building-deb-base.yml +++ b/.github/workflows/building-deb-base.yml @@ -94,16 +94,18 @@ jobs: - name: Building ${{ GITHUB.repository }} run: | - gitPath=$(basename $GITHUB_REPOSITORY) + export gitPath=$(basename $GITHUB_REPOSITORY) if [[ -f system-bottle/$gitPath/debian/control ]]; then env gitPath=$gitPath bash .github/workflows/run-command-in-chroot.sh \ env GXDE_ARCH=${{ inputs.arch }} GXDE_CODENAME=${{ inputs.gxde-codename }} \ GXDE_ARCH=${{ inputs.arch }} GXDE_CROSS_ARCH=${{ inputs.gxde-cross-arch }} GO111MODULE=off \ + DEBIAN_FRONTEND=noninteractive \ dpkg-buildpackage -b else env gitPath=$gitPath bash .github/workflows/run-command-in-chroot.sh \ env GXDE_ARCH=${{ inputs.arch }} GXDE_CODENAME=${{ inputs.gxde-codename }} \ GXDE_ARCH=${{ inputs.arch }} GXDE_CROSS_ARCH=${{ inputs.gxde-cross-arch }} GO111MODULE=off \ + DEBIAN_FRONTEND=noninteractive \ bash build-deb.sh fi cp $BOTTLEPATH/*.deb . -rv