pcsx2/appveyor.yml
Jonathan Li 1bcb7eccbc ci: Update Travis CI and AppVeyor configurations
Travis CI:
Replace GCC4.9 64-bit with GCC7 64-bit.
Replace GCC5 32-bit with GCC7 32-bit.
Move 64-bit to top of matrix so it gets built first (ccache doesn't work
on the 64-bit build and I don't know why (it works locally), so it takes
the longest to build).

AppVeyor:
Add VS2017 build job.
2017-10-12 23:54:12 +01:00

45 lines
1.2 KiB
YAML

# Static build version - changing the version dynamically means you can't
# just click from github to see how things are progressing until the build has
# finished, which could be a bit annoying.
version: 1.{build}-{branch}
image: Visual Studio 2017
environment:
matrix:
- platform: Win32
target: AppVeyor
visualstudio_string: vs2017
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- platform: Win32
target: AppVeyor
visualstudio_string: vs2015
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
matrix:
fast_finish: true
init:
# Use CRLF line endings on Windows so users can just use Notepad.
- git config --global core.autocrlf true
install:
- git submodule update --init --recursive
build_script:
- msbuild buildbot.xml /m /t:%target% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
after_build:
- ps: $env:gitrev = git describe --tags
- ps: $env:my_version = "$env:gitrev-$env:appveyor_build_number"
- type NUL > bin\portable.ini
- set folder_name=pcsx2-%my_version%-%visualstudio_string%-%platform%-%target%
- rename bin %folder_name%
- 7z a -mx9 %folder_name%.7z %folder_name%
test: off
artifacts:
- path: $(folder_name).7z
name: $(visualstudio_string)-$(target)