flycast/appveyor.yml

40 lines
1.1 KiB
YAML
Raw Normal View History

2015-08-21 16:56:00 +00:00
version: git-{branch}-{build}
2019-02-22 09:49:13 +00:00
image: Visual Studio 2017
environment:
matrix:
2019-02-22 10:04:24 +00:00
- EXTRA_PATH: C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin\
2019-02-22 09:49:13 +00:00
LAUNCH_BUILD: mingw32-make platform=win32
LAUNCH_PATH: shell\linux\
2019-02-22 09:49:13 +00:00
build_script:
- cmd: >-
set PATH=%EXTRA_PATH%;%PATH%
2019-02-22 10:01:27 +00:00
2019-02-22 09:49:13 +00:00
cd %LAUNCH_PATH%
2019-02-22 10:01:27 +00:00
2019-02-22 09:49:13 +00:00
%LAUNCH_BUILD%
after_build:
2019-02-22 10:01:27 +00:00
- cmd: cd ..\..
- cmd: mkdir artifacts
2019-02-22 09:49:13 +00:00
- cmd: move shell\linux\reicast.exe artifacts/reicast-win_x64-fast-%APPVEYOR_REPO_COMMIT%.exe
- cmd: copy %EXTRA_PATH%\libgcc_s_seh-1.dll artifacts
- cmd: copy %EXTRA_PATH%\libwinpthread-1.dll artifacts
- cmd: copy %EXTRA_PATH%\libgomp-1.dll artifacts
artifacts:
- path: artifacts
2019-02-22 09:49:13 +00:00
name: reicast-win_x64-fast-$(APPVEYOR_REPO_COMMIT)
deploy:
- provider: S3
access_key_id: AKIAJETEBUZSLZF3YNKA
secret_access_key:
secure: ZxrysCeqMK99dOOzKyoeN4R5aO8JjA4RTrwVAQPQHz8sjyyKuVDZT2fC+9m6lUIi
2017-05-13 11:10:48 +00:00
region: eu-west-1
bucket: reicast-builds-windows
folder: 'builds/heads/$(APPVEYOR_REPO_BRANCH)-$(APPVEYOR_REPO_COMMIT)'
2019-02-22 09:49:13 +00:00
artifact: reicast-win_x64-fast-$(APPVEYOR_REPO_COMMIT)
set_public: true