🛠️ Fix Docker in Ubuntu 22.04(jammy) & Debian 11 (bullseye) & Debian 12 (bookworm) environment build error.

- Modify `Dockerfile`, when using above version OS to build package, here will raise an error:

    ````
    dpkg-checkbuilddeps: error: Unmet build dependencies: dh-sequence-movetousr
    ````

    This error **CAN NOT** be solved by using `apt install -y dh-sequence-movetousr` cause there is no such package named `dh-sequence-movetousr`

- Uncomment collect actions in `create-amd64-release.yml` and `create-arm64-release.yml`
This commit is contained in:
ChowRex
2024-11-14 16:58:02 +08:00
parent 77fceacdca
commit adaf318e36
3 changed files with 47 additions and 42 deletions

View File

@@ -157,11 +157,11 @@ jobs:
create_release:
needs:
- build_ubuntu24
# - build_ubuntu22
- build_ubuntu22
- build_ubuntu20
- build_debian13
# - build_debian12
# - build_debian11
- build_debian12
- build_debian11
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@ -171,10 +171,10 @@ jobs:
name: ubuntu24-amd64
path: ./output
# - uses: actions/download-artifact@v4
# with:
# name: ubuntu22-amd64
# path: ./output
- uses: actions/download-artifact@v4
with:
name: ubuntu22-amd64
path: ./output
- uses: actions/download-artifact@v4
with:
@@ -186,15 +186,15 @@ jobs:
name: debian13-amd64
path: ./output
# - uses: actions/download-artifact@v4
# with:
# name: debian12-amd64
# path: ./output
- uses: actions/download-artifact@v4
with:
name: debian12-amd64
path: ./output
# - uses: actions/download-artifact@v4
# with:
# name: debian11-amd64
# path: ./output
- uses: actions/download-artifact@v4
with:
name: debian11-amd64
path: ./output
- name: Get tag message
run: |

View File

@@ -193,11 +193,11 @@ jobs:
create_release:
needs:
- build_ubuntu24
# - build_ubuntu22
- build_ubuntu22
- build_ubuntu20
- build_debian13
# - build_debian12
# - build_debian11
- build_debian12
- build_debian11
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@ -207,10 +207,10 @@ jobs:
name: ubuntu24-arm64
path: ./output
# - uses: actions/download-artifact@v4
# with:
# name: ubuntu22-arm64
# path: ./output
- uses: actions/download-artifact@v4
with:
name: ubuntu22-arm64
path: ./output
- uses: actions/download-artifact@v4
with:
@@ -222,15 +222,15 @@ jobs:
name: debian13-arm64
path: ./output
# - uses: actions/download-artifact@v4
# with:
# name: debian12-arm64
# path: ./output
- uses: actions/download-artifact@v4
with:
name: debian12-arm64
path: ./output
# - uses: actions/download-artifact@v4
# with:
# name: debian11-arm64
# path: ./output
- uses: actions/download-artifact@v4
with:
name: debian11-arm64
path: ./output
- name: Get tag message
run: |
@@ -246,4 +246,3 @@ jobs:
bodyFile: ${{ github.workspace }}/RELEASE.md
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true