From 71674e3de889c0fec776315a36026e2f1d46b83e Mon Sep 17 00:00:00 2001 From: Revertron Date: Tue, 28 Oct 2025 16:31:05 +0100 Subject: [PATCH] Fixes for CI, for future releases. --- .github/workflows/rust_parallel_release.yml | 2 +- contrib/deb/generate.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust_parallel_release.yml b/.github/workflows/rust_parallel_release.yml index 196b1e8..31c432f 100644 --- a/.github/workflows/rust_parallel_release.yml +++ b/.github/workflows/rust_parallel_release.yml @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - arch: [ amd64, i686, armhf, armlf, arm64 ] + arch: [ amd64, i686, armhf, armel, arm64 ] defaults: run: shell: bash diff --git a/contrib/deb/generate.sh b/contrib/deb/generate.sh index d7f05dc..d2d2fb7 100755 --- a/contrib/deb/generate.sh +++ b/contrib/deb/generate.sh @@ -35,10 +35,10 @@ elif [ $PKGARCH = "i686" ]; then TARGET='i686-unknown-linux-musl' elif [ $PKGARCH = "mipsel" ]; then TARGET='mipsel-unknown-linux-musl' elif [ $PKGARCH = "mips" ]; then TARGET='mips-unknown-linux-musl' elif [ $PKGARCH = "armhf" ]; then TARGET='armv7-unknown-linux-musleabihf' -elif [ $PKGARCH = "armlf" ]; then TARGET='arm-unknown-linux-musleabi' +elif [ $PKGARCH = "armel" ]; then TARGET='arm-unknown-linux-musleabi' elif [ $PKGARCH = "arm64" ]; then TARGET='aarch64-unknown-linux-musl' else - echo "Specify PKGARCH=amd64,i686,mips,mipsel,armhf,armlf,arm64" + echo "Specify PKGARCH=amd64,i686,mips,mipsel,armhf,armel,arm64" exit 1 fi