Nightly: Accomodate FTEQW arm64

This commit is contained in:
Ian 2022-04-30 15:27:03 -04:00
parent 5f48c6d5cc
commit bbfff870b7
2 changed files with 14 additions and 0 deletions

View File

@ -35,6 +35,7 @@ jobs:
files: |
./out/nzportable-linux32.zip
./out/nzportable-linux64.zip
./out/nzportable-linuxarm64.zip
./out/nzportable-linuxarmhf.zip
./out/nzportable-psp-32mb.zip
./out/nzportable-psp-64mb.zip
@ -55,6 +56,7 @@ jobs:
files: |
./out/nzportable-linux32.zip
./out/nzportable-linux64.zip
./out/nzportable-linuxarm64.zip
./out/nzportable-linuxarmhf.zip
./out/nzportable-psp-32mb.zip
./out/nzportable-psp-64mb.zip
@ -75,6 +77,7 @@ jobs:
files: |
./out/nzportable-linux32.zip
./out/nzportable-linux64.zip
./out/nzportable-linuxarm64.zip
./out/nzportable-linuxarmhf.zip
./out/nzportable-psp-32mb.zip
./out/nzportable-psp-64mb.zip
@ -95,6 +98,7 @@ jobs:
files: |
./out/nzportable-linux32.zip
./out/nzportable-linux64.zip
./out/nzportable-linuxarm64.zip
./out/nzportable-linuxarmhf.zip
./out/nzportable-psp-32mb.zip
./out/nzportable-psp-64mb.zip
@ -115,6 +119,7 @@ jobs:
files: |
./out/nzportable-linux32.zip
./out/nzportable-linux64.zip
./out/nzportable-linuxarm64.zip
./out/nzportable-linuxarmhf.zip
./out/nzportable-psp-32mb.zip
./out/nzportable-psp-64mb.zip

View File

@ -90,6 +90,7 @@ if [ "$SPASM_UPDATE" -eq "1" ]; then
printf "* Quakespasm (PS VITA/Nintendo Switch Engine)\n\n" >> changes.txt
fi
printf "\n " >> changes.txt
printf "Installation Instructions:\n" >> changes.txt
printf "* PC: Extract .ZIP archive into a folder of your choice. Linux users may need" >> changes.txt
printf " to mark as executable with \`chmod\`\n" >> changes.txt
@ -115,6 +116,7 @@ wget -nc https://github.com/nzp-team/dquakeplus/releases/download/bleeding-edge/
# FTEQW
wget -nc https://github.com/nzp-team/fteqw/releases/download/bleeding-edge/pc-nzp-linux32.zip
wget -nc https://github.com/nzp-team/fteqw/releases/download/bleeding-edge/pc-nzp-linux64.zip
wget -nc https://github.com/nzp-team/fteqw/releases/download/bleeding-edge/pc-nzp-linux_arm64.zip
wget -nc https://github.com/nzp-team/fteqw/releases/download/bleeding-edge/pc-nzp-linux_armhf.zip
wget -nc https://github.com/nzp-team/fteqw/releases/download/bleeding-edge/pc-nzp-win32.zip
wget -nc https://github.com/nzp-team/fteqw/releases/download/bleeding-edge/pc-nzp-win64.zip
@ -143,6 +145,7 @@ unzip -q ../pc-nzp-assets.zip -d assets/
unzip -q ../pc-nzp-qc.zip -d assets/nzp/
unzip -q ../pc-nzp-linux32.zip -d $PWD
unzip -q ../pc-nzp-linux64.zip -d $PWD
unzip -q ../pc-nzp-linux_arm64.zip -d $PWD
unzip -q ../pc-nzp-linux_armhf.zip -d $PWD
unzip -q ../pc-nzp-win32.zip -d $PWD
unzip -q ../pc-nzp-win64.zip -d $PWD
@ -159,6 +162,12 @@ zip -q -r ../nzportable-linux64.zip ./*
rm nzportable64
cd ../
mv nzportable-linux64.zip ../out/
mv nzportablearm64 assets/
cd assets
zip -q -r ../nzportable-linuxarm64.zip ./*
rm nzportablearm64
cd ../
mv nzportable-linuxarm64.zip ../out/
mv nzportablearmhf assets/
cd assets
zip -q -r ../nzportable-linuxarmhf.zip ./*