From fd3bec83719e3dedeee0b4c66b6351d45646a4c0 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Mon, 31 Jan 2022 10:05:53 -0500 Subject: [PATCH] Delete windows-install.sh --- .github/actions/windows-install.sh | 31 ------------------------------ 1 file changed, 31 deletions(-) delete mode 100755 .github/actions/windows-install.sh diff --git a/.github/actions/windows-install.sh b/.github/actions/windows-install.sh deleted file mode 100755 index 96c07cf7..00000000 --- a/.github/actions/windows-install.sh +++ /dev/null @@ -1,31 +0,0 @@ -if [[ "$PLATFORM" == "x86_64" ]]; then - export WIX_BITS="x64" -elif [[ "$PLATFORM" == "x86" ]]; then - export WIX_BITS="x86" -fi -echo "compiling GAM with pyinstaller..." -export distpath="dist/" -export gampath="${distpath}gam" -rm -rf $gampath -/c/python/scripts/pyinstaller --clean --noupx --distpath $gampath gam.spec -export gam="${gampath}/gam" -echo "running compiled GAM..." -$gam version -export GAMVERSION=$($gam version simple) -rm $gampath/lastupdatecheck.txt -cp LICENSE $gampath -cp GamCommands.txt $gampath -cp gam-setup.bat $gampath -GAM_ARCHIVE=gam-$GAMVERSION-$GAMOS-$PLATFORM.zip -cwd=$(pwd) -cd "${distpath}" -/c/Program\ Files/7-Zip/7z.exe a -tzip "$GAM_ARCHIVE" gam -xr!.svn -mv "${GAM_ARCHIVE}" "${cwd}" -cd "${cwd}" -echo "Running WIX candle $WIX_BITS..." -/c/Program\ Files\ \(x86\)/WiX\ Toolset\ v3.11/bin/candle.exe -arch $WIX_BITS gam.wxs -echo "Done with WIX candle..." -echo "Running WIX light..." -/c/Program\ Files\ \(x86\)/WiX\ Toolset\ v3.11/bin/light.exe -ext /c/Program\ Files\ \(x86\)/WiX\ Toolset\ v3.11/bin/WixUIExtension.dll gam.wixobj -o gam-"$GAMVERSION"-"$GAMOS"-"$PLATFORM".msi || true; -echo "Done with WIX light..." -rm *.wixpdb