From 094a0fde50e404535e28cae856772f9f346932ec Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Sun, 9 Mar 2025 20:24:33 -0300 Subject: ci: remove Appveyor --- makedist | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) (limited to 'makedist') diff --git a/makedist b/makedist index ac7a466e..8b65a62e 100755 --- a/makedist +++ b/makedist @@ -61,8 +61,6 @@ then sed -i 's/version = "[^"]*"/version = "'$version'-1"/' $ROCKSPEC sed -i 's/\( url = "[^"]*",\)/\1\n tag = "v'$version'"/' $ROCKSPEC sed -i 's/program_version = "[^"]*"/program_version = "'$version'"/' src/luarocks/core/cfg.lua - sed -i 's/version: [0-9.]*/version: '$version'./' appveyor.yml - sed -i 's/LUAROCKS_VER: [0-9.]*/LUAROCKS_VER: '$version'/' appveyor.yml sed -i 's/vars.VERSION = "[0-9.]*"/vars.VERSION = "'$xyversion'"/' install.bat echo "===============================================================================" git diff @@ -100,18 +98,6 @@ grep -q "program_version = \"$version\"" src/luarocks/core/cfg.lua || { exit 1 } -grep -q "version: $version\\." appveyor.yml || { - echo - echo "version in appveyor.yml is incorrect. Please fix it." - exit 1 -} - -grep -q "LUAROCKS_VER: $version" appveyor.yml || { - echo - echo "LUAROCKS_VER in appveyor.yml is incorrect. Please fix it." - exit 1 -} - grep -q "vars.VERSION = \"$xyversion\"" install.bat || { echo echo "vars.VERSION in install.bat is incorrect. Please fix it." @@ -143,7 +129,7 @@ mkdir "release-windows" mv "$out" "release-windows/$out-win32" cd "release-unix/$out" -rm -rf makedist install.bat win32 .github .gitignore appveyor* .appveyor +rm -rf makedist install.bat win32 .github .gitignore cd .. tar czvpf ../"$out.tar.gz" "$out" rm -f ../"$out.tar.gz.asc" @@ -151,7 +137,7 @@ cd .. rm -rf "release-unix" cd "release-windows/$out-win32" -rm -rf makedist Makefile GNUmakefile configure .github .gitignore test appveyor* .appveyor +rm -rf makedist Makefile GNUmakefile configure .github .gitignore test cd .. zip -r ../"$out-win32.zip" "$out-win32" rm -f ../"$out-win32.zip.asc" -- cgit v1.2.3-55-g6feb