From b60d6a03fdb891325938823da0cfbf9105dce84a Mon Sep 17 00:00:00 2001 From: oddMLan Date: Sun, 29 Sep 2019 19:11:24 -0700 Subject: [PATCH] Create appveyor.yml --- appveyor.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..07ced615f --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,20 @@ +image: Visual Studio 2015 +build: + project: Project64.sln + parallel: true + verbosity: minimal +platform: +- Win32 +- x64 +configuration: +- Release + +before_build: +- for /f "tokens=1 delims=" %%a in ('git describe --tags --long --dirty') do set current_tag=%%a +- appveyor UpdateBuild -Version %current_tag% + +after_build: +- Source/Script/package_zip.cmd %current_tag%-%platform%.zip %platform% + +artifacts: +- path: Package/*.zip \ No newline at end of file