From 50182997f2624f29f696f8292af506a5689d328d Mon Sep 17 00:00:00 2001 From: zeffy Date: Tue, 6 Jun 2017 20:39:42 -0700 Subject: [PATCH] Add appveyor.yml --- appveyor.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..86fc7e1 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,27 @@ +version: 0.6.0.{build} +skip_commits: + files: + - README.md +image: Visual Studio 2017 +configuration: Release +platform: +- x86 +- x64 +build: + verbosity: minimal +after_build: +- cmd: >- + set "ZIP_NAME=%APPVEYOR_PROJECT_NAME%_%APPVEYOR_REPO_COMMIT:~0,8%.zip" + + cd "%APPVEYOR_BUILD_FOLDER%\install" + + unix2dos "COPYING.txt" + + for /R %%G in (*.bat) do unix2dos "%%G" + + 7z a "%ZIP_NAME%" "..\install" + + 7z rn "%ZIP_NAME%" "install" "wufuc" + +artifacts: +- path: '*.zip'