From 8ffa64dd68b03832c4c7f70e9deab69ca866ca84 Mon Sep 17 00:00:00 2001 From: Alberto Fustinoni Date: Thu, 21 Dec 2017 21:59:47 +0900 Subject: [PATCH] Appveyor CI --- appveyor.yml | 33 +++++++++++++++++++++++++++++++++ readme.md | 4 ++++ 2 files changed, 37 insertions(+) create mode 100644 appveyor.yml create mode 100644 readme.md diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..f692446 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,33 @@ +version: 0.1.{build} + +shallow_clone: true + +image: Visual Studio 2017 + +environment: + makefile_location: "." + makefile_name: Makefile + target_name: mednafen_ngp + +configuration: + - release + +platform: + - windows_msvc2017_uwp_x64 + - windows_msvc2017_uwp_x86 + - windows_msvc2017_uwp_arm + - windows_msvc2017_desktop_x64 + - windows_msvc2017_desktop_x86 + +init: + - set Path=C:\msys64\usr\bin;%Path% + +build_script: + - cd %makefile_location% + - make -f %makefile_name% platform=%platform% + +artifacts: + - path: '**\%target_name%*.dll' + - path: '**\%target_name%*.lib' + - path: '**\%target_name%*.pdb' + - path: '**\libretro.h' \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..91e1926 --- /dev/null +++ b/readme.md @@ -0,0 +1,4 @@ +[![Build Status](https://travis-ci.org/libretro/beetle-ngp-libretro.svg?branch=master)](https://travis-ci.org/libretro/beetle-ngp-libretro) +[![Build status](https://ci.appveyor.com/api/projects/status/cbyyvbdbv1yc8yst/branch/master?svg=true)](https://ci.appveyor.com/project/bparker06/beetle-ngp-libretro/branch/master) + +# Beetle NeoGeo Pocket \ No newline at end of file