From 067f812ef4b84c6fc3756d80127b87a977e55d47 Mon Sep 17 00:00:00 2001 From: gocha Date: Mon, 5 Feb 2018 21:51:21 +0900 Subject: [PATCH] add appveyor build script (CI for Windows) --- appveyor.yml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..78841082 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,45 @@ +version: 1.55-{build} + +image: Visual Studio 2017 + +environment: + matrix: + - generator: "Visual Studio 15" + config: Release Unicode + platform: Win32 + arch: win32 + output: win32\snes9x.exe + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + + - generator: "Visual Studio 15" + config: Release Unicode + platform: x64 + arch: win32-x64 + output: win32\snes9x-x64.exe + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + +init: + - git config --global core.autocrlf input + +before_build: + - git submodule update --init --recursive + +build_script: + - msbuild win32\snes9xw.sln /t:build /p:Configuration="%config%";Platform="%platform%" /m /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" + +after_build: + - ps: $env:gitrev = git describe --tags + - ps: $env:my_version = "$env:gitrev" + - set package_name=snes9x-%my_version%-%arch% + - if exist artifacts rmdir /s /q artifacts + - mkdir artifacts + - copy "%output%" artifacts + - copy docs\changes.txt artifacts + - copy docs\snes9x-license.txt artifacts + - copy win32\docs\faqs-windows.txt artifacts + - copy win32\docs\readme-windows.txt artifacts + - 7z a %package_name%.zip .\artifacts\* + +artifacts: + - path: $(package_name).zip + name: $(arch)