diff options
| author | Dr. Chat <arkolbed@gmail.com> | 2017-04-08 12:50:56 -0500 |
|---|---|---|
| committer | Dr. Chat <arkolbed@gmail.com> | 2017-04-08 13:01:17 -0500 |
| commit | 761ae4eeeecf9a993ca6e0075b6d601b63d7deb8 (patch) | |
| tree | 92d9a44baee3647a561df6541fd0169e4b46a7c0 | |
| parent | ab1690b0b11c2d1f4d3c7ff53c5c005e6595e85b (diff) | |
Run appveyor against checked builds
| -rw-r--r-- | .appveyor.yml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index e9a2c68fc..3fe47d67c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -5,9 +5,6 @@ # version format version: 1.0.{build}-{branch} -# you can use {branch} name in version format too -# version: 1.0.{build}-{branch} - # branches to build branches: # whitelist @@ -59,7 +56,7 @@ platform: Windows # build Configuration, i.e. Debug, Release, etc. configuration: - #- Checked + - Checked - Release #build: @@ -76,12 +73,12 @@ configuration: # scripts to run after build after_build: - - 7z a xenia-%appveyor_repo_branch%-%appveyor_repo_commit%.zip LICENSE %APPVEYOR_BUILD_FOLDER%\build\bin\Windows\Release\xenia.exe %APPVEYOR_BUILD_FOLDER%\build\bin\Windows\Release\xenia.pdb + - 7z a xenia-%appveyor_repo_branch%-%appveyor_repo_commit%.zip LICENSE %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\xenia.exe %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\xenia.pdb # to run your custom scripts instead of automatic MSBuild # We also compile the tests here instead of later on. build_script: - - cmd: xb.bat build --config=release --target=src\xenia-app --target=tests\xenia-cpu-ppc-tests + - cmd: xb.bat build --config=%CONFIGURATION% --target=src\xenia-app --target=tests\xenia-cpu-ppc-tests # to disable automatic builds #build: off @@ -100,7 +97,7 @@ after_test: # to run your custom scripts instead of automatic tests test_script: - - cmd: xb.bat test --config=release --no_build + - cmd: xb.bat test --config=%CONFIGURATION% --no_build # to disable automatic tests #test: off @@ -143,6 +140,7 @@ deploy: prerelease: true on: branch: master # release from master branch only + configuration: release # deploy release builds only appveyor_repo_tag: true # deploy on tag push only # scripts to run before deployment |
