diff --git a/.appveyor.yml b/.appveyor.yml index f1bf140e4..2ac5b4996 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -6,11 +6,8 @@ version: 1.0.{build}-{branch} # branches to build +# Only building master (and pull requests) branches: - # whitelist - # only: - # - master - # blacklist except: - gh-pages @@ -23,6 +20,10 @@ skip_commits: - docs/* - LICENSE - README.md + - .travis.yml + +# Skip branches that have an open pull request. +skip_branch_with_pr: true pull_requests: do_not_increment_build_number: true @@ -82,11 +83,12 @@ configuration: # scripts to run after build after_build: - 7z a xenia-%appveyor_repo_branch%.zip LICENSE %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\xenia.exe %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\xenia.pdb + - 7z a xenia-vfs-dump-%appveyor_repo_branch%.zip LICENSE %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\xenia-vfs-dump.exe %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\xenia-vfs-dump.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=%CONFIGURATION% --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 --target=src\xenia-vfs-dump # to disable automatic builds #build: off @@ -131,6 +133,7 @@ artifacts: - path: xenia-cpu-ppc-test.log - path: xenia-$(appveyor_repo_branch).zip + - path: xenia-vfs-dump-$(appveyor_repo_branch).zip #---------------------------------# @@ -143,7 +146,7 @@ deploy: - provider: Environment name: xenia-master release: xenia-$(appveyor_repo_branch)-v$(appveyor_build_version) - artifact: xenia-$(appveyor_repo_branch).zip + artifact: xenia-$(appveyor_repo_branch).zip,xenia-vfs-dump-$(appveyor_repo_branch).zip draft: false prerelease: true on: diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index a6359167a..866b52421 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,5 +1,5 @@