Merge pull request #206 from exepirit/master

Add armlf architecture support
This commit is contained in:
Revertron
2022-01-16 02:32:03 +01:00
committed by GitHub
2 changed files with 4 additions and 2 deletions
@@ -82,6 +82,7 @@ jobs:
PKGARCH=mips contrib/deb/generate.sh
PKGARCH=mipsel contrib/deb/generate.sh
PKGARCH=armhf contrib/deb/generate.sh
PKGARCH=armlf contrib/deb/generate.sh
PKGARCH=arm64 contrib/deb/generate.sh
- name: Upload bins & debs
+2 -1
View File
@@ -35,9 +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 = "arm64" ]; then TARGET='aarch64-unknown-linux-musl'
else
echo "Specify PKGARCH=amd64,i686,mips,mipsel,armhf,arm64"
echo "Specify PKGARCH=amd64,i686,mips,mipsel,armhf,armlf,arm64"
exit 1
fi