Browse Source

Merge pull request #11 from sdlpal/CI_all_platforms

[WIP] CI + buildbot for all supported platform
Pal Lockheart 8 years ago
parent
commit
2a9d92cb05
3 changed files with 164 additions and 12 deletions
  1. 40 0
      .appveyor.yml
  2. 121 10
      .travis.yml
  3. 3 2
      README.md

+ 40 - 0
.appveyor.yml

@@ -0,0 +1,40 @@
+version: 2.0.{build}
+environment:
+  matrix:
+  - solution_name: win32/sdlpal.sln
+    SDL_W32:
+    SDL_SRC: rem
+  - solution_name: winrt/SDLPal.UWP.sln
+    SDL_W32: rem
+    SDL_SRC: 
+build_script:
+  - msbuild %solution_name% /p:Configuration=Release /m
+before_build:
+  # SDL include/lib setup; for win32
+  - |-
+    %SDL_W32% appveyor DownloadFile http://www.libsdl.org/release/SDL2-devel-2.0.5-VC.zip
+    %SDL_W32% 7z x SDL2-devel-2.0.5-VC.zip
+    %SDL_W32% move /y SDL2-2.0.5\include SDL2\ > nul
+    %SDL_W32% move /y SDL2-2.0.5\lib SDL2\ > nul
+    %SDL_W32% rd /s /q SDL2-2.0.5 > nul
+
+  # SDL src setup; for UWP
+  - |-
+    %SDL_SRC% appveyor DownloadFile http://www.libsdl.org/release/SDL2-2.0.5.zip
+    %SDL_SRC% 7z x SDL2-2.0.5.zip
+    %SDL_SRC% rd /s /q SDL2 > nul
+    %SDL_SRC% move /y SDL2-2.0.5 SDL2 > nul
+
+deploy:
+- provider: GitHub
+  on:
+    appveyor_repo_tag: true
+  auth_token:
+    secure: RYDRqm5LncsJG32FRSlCkLzkJC4ykCtlgO3+xW4q80wQOA3U9pHAe2beyMEduJIe
+artifacts:
+  - path: win32/Release/sdlpal.exe
+    name: win32 build
+
+  - path: winrt/AppPackages/SDLPal
+    name: SDLPal UWP
+    type: zip

File diff suppressed because it is too large
+ 121 - 10
.travis.yml


+ 3 - 2
README.md

@@ -1,6 +1,7 @@
 SDLPAL
 ======
-[![Travis CI](https://travis-ci.org/sdlpal/sdlpal.svg?branch=master)](https://github.com/sdlpal/sdlpal)
+[![Travis CI](https://travis-ci.org/sdlpal/sdlpal.svg?branch=master)](https://travis-ci.org/sdlpal/sdlpal)
+[![Build status](https://ci.appveyor.com/api/projects/status/wc8r3qlqmh5q6j1c?svg=true)](https://ci.appveyor.com/project/palxex/sdlpal-itfml)
 
 ***SDLPAL*** is an SDL-based open-source cross-platform reimplementation of the classic Chinese RPG game *Xiān jiàn Qí Xiá Zhuàn (Chinese: 仙剑奇侠传/仙劍奇俠傳)* (also known as *Chinese Paladin* or *Legend of Sword and Fairy*, or *PAL* for short).
 
@@ -27,7 +28,7 @@ This program made extensive use of the following libraries:
 * [FLTK](http://www.fltk.org)
 * [DOSBOX project](http://www.dosbox.com) and [MAME project](http://mamedev.org/) for codes of some the OPL simulation cores
 
-Please see [authors.txt](https://raw.githubusercontent.com/sdlpal/sdlpal/master/authors.txt) for additional authors.
+Please see [AUTHORS.txt](https://raw.githubusercontent.com/sdlpal/sdlpal/master/AUTHORS.txt) for additional authors.
 
 This program does **NOT** include any code or data files of the original game, which are proprietary and copyrighted by SoftStar Inc.