Merge pull request #901 from wolfman2000/wolf-appveyor-artifacts
Try out artifacts for windows StepMania.
This commit is contained in:
+14
-2
@@ -20,11 +20,17 @@ init:
|
||||
|
||||
set APPVEYOR_BUILD_URL=https://ci.appveyor.com/project/%APPVEYOR_ACCOUNT_NAME%/%APPVEYOR_PROJECT_SLUG%/build/%APPVEYOR_BUILD_VERSION%
|
||||
|
||||
set SM_COMMIT_SHORT=%APPVEYOR_REPO_COMMIT:~0,7%
|
||||
|
||||
set SM_SETUP_EXE_NAME=StepMania-5.0-git-%SM_COMMIT_SHORT%-win32.exe
|
||||
|
||||
curl -u wolfman2000:%access_token% -H "User-Agent: Appveyor-wolfman2000-stepmania-app" -H "Accept: application/vnd.github.v3+json" -H "Content-Type: application/json" -X POST -d %GITHUB_API_PENDING% %GITHUB_API_URL%
|
||||
|
||||
install:
|
||||
- cmd: >-
|
||||
choco install cmake
|
||||
|
||||
choco install nsis -version 2.46.0.20150406
|
||||
before_build:
|
||||
- cmd: >-
|
||||
cd Build
|
||||
@@ -33,6 +39,12 @@ before_build:
|
||||
build:
|
||||
project: C:\Repos\wolfmania\Build\StepMania.sln
|
||||
verbosity: normal
|
||||
after_build:
|
||||
- cmd: >-
|
||||
msbuild "C:\Repos\wolfmania\Build\PACKAGE.vcxproj" /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
||||
artifacts:
|
||||
- path: Build/*.exe
|
||||
type: exe
|
||||
on_success:
|
||||
- cmd: >-
|
||||
set GITHUB_API_SUCCESS="{"""state""": """success""", """target_url""": """%APPVEYOR_BUILD_URL%""", """description""": """Successfully compiled in appveyor.""", """context""": """continuous-integration/appveyor"""}"
|
||||
@@ -41,7 +53,7 @@ on_success:
|
||||
|
||||
echo "Posting to IRC now..."
|
||||
|
||||
C:\Repos\wolfmania\Program\irc-reporter.exe "%APPVEYOR_REPO_NAME%" "%APPVEYOR_BUILD_VERSION%" "%APPVEYOR_REPO_COMMIT%" "%APPVEYOR_REPO_COMMIT_AUTHOR%" "%APPVEYOR_BUILD_URL%" "success"
|
||||
C:\Repos\wolfmania\Program\irc-reporter.exe "%APPVEYOR_REPO_NAME%" "%APPVEYOR_BUILD_VERSION%" "%SM_COMMIT_SHORT%" "%APPVEYOR_REPO_COMMIT_AUTHOR%" "%APPVEYOR_BUILD_URL%" "success"
|
||||
on_failure:
|
||||
- cmd: >-
|
||||
set GITHUB_API_FAILURE="{"""state""": """failure""", """target_url""": """%APPVEYOR_BUILD_URL%""", """description""": """Build failure on appveyor.""", """context""": """continuous-integration/appveyor"""}"
|
||||
@@ -50,4 +62,4 @@ on_failure:
|
||||
|
||||
echo "Posting to IRC now..."
|
||||
|
||||
C:\Repos\wolfmania\Program\irc-reporter.exe "%APPVEYOR_REPO_NAME%" "%APPVEYOR_BUILD_VERSION%" "%APPVEYOR_REPO_COMMIT%" "%APPVEYOR_REPO_COMMIT_AUTHOR%" "%APPVEYOR_BUILD_URL%" "failure"
|
||||
C:\Repos\wolfmania\Program\irc-reporter.exe "%APPVEYOR_REPO_NAME%" "%APPVEYOR_BUILD_VERSION%" "%SM_COMMIT_SHORT%" "%APPVEYOR_REPO_COMMIT_AUTHOR%" "%APPVEYOR_BUILD_URL%" "failure"
|
||||
|
||||
@@ -5,6 +5,14 @@ StepMania is an advanced cross-platform rhythm game for home and arcade use.
|
||||
|
||||
Advanced cross-platform rhythm game for home and arcade use.
|
||||
|
||||
##Installing from Setup/Installer##
|
||||
|
||||
For those that do not wish to compile the game on their own and use a binary right away, be aware of the following issues:
|
||||
|
||||
* Windows users are expected to have installed the [Microsoft Visual C++ x86 Redistributable for Visual Studio 2015](http://www.microsoft.com/en-us/download/details.aspx?id=48145) prior to running the game. For those on a 64-bit operating system, grab the x64 redistributable as well. Windows 7 is the minimum supported version.
|
||||
* Mac OS X users need to have Mac OS X 10.6.8 or higher to run StepMania.
|
||||
* Linux users should receive all they need from the package manager of their choice.
|
||||
|
||||
##Installing from Source##
|
||||
|
||||
StepMania can be compiled using [CMake](http://www.cmake.org/). More information about using CMake can be found in both the `Build` directory and CMake's documentation.
|
||||
|
||||
Reference in New Issue
Block a user