re3/.appveyor.yml

46 lines
1.1 KiB
YAML
Raw Normal View History

2019-07-20 13:13:16 +00:00
version: 1.0.{build}
2019-09-21 20:10:35 +00:00
image: Visual Studio 2017
2019-06-13 09:12:42 +00:00
configuration:
2019-07-20 13:13:16 +00:00
- Debug
- Release
platform: Win32
2019-05-19 21:05:06 +00:00
environment:
APPVEYOR_SAVE_CACHE_ON_ERROR: true
install:
2019-07-20 13:13:16 +00:00
- cmd: >-
git submodule update --init --recursive
2019-07-20 13:39:51 +00:00
2019-09-21 20:10:35 +00:00
premake-vs2017.cmd
2019-05-19 21:05:06 +00:00
build:
2019-07-20 13:13:16 +00:00
project: build/re3.sln
2019-05-19 21:05:06 +00:00
verbosity: minimal
2019-07-20 13:13:16 +00:00
after_build:
2019-07-20 13:30:03 +00:00
# downloading latest release of UAL to make release with UAL and ASI.
2019-07-20 13:13:16 +00:00
- ps: >-
$releases = "https://github.com/ThirteenAG/Ultimate-ASI-Loader/releases"
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
$name = "Ultimate-ASI-Loader.zip"
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
$latestRelease = Invoke-WebRequest $releases/latest -Headers @{"Accept"="application/json"}
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
$json = $latestRelease.Content | ConvertFrom-Json
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
$latestVersion = $json.tag_name
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
$url = "$releases/download/$latestVersion/$name"
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
Start-FileDownload $url -FileName 'C:\Ultimate-ASI-Loader.zip'
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
7z e c:\Ultimate-ASI-Loader.zip -oc:\Projects\re3\bin\${env:CONFIGURATION}
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
cd "bin\${env:CONFIGURATION}"
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
copy re3.dll re3.asi
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
7z u "RE3_${env:CONFIGURATION}+UAL.zip" re3.asi dinput8.dll
2019-07-20 13:39:51 +00:00
2019-07-20 13:13:16 +00:00
Get-ChildItem .\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
artifacts:
- path: bin/%CONFIGURATION%/re3.dll
2019-09-21 20:10:35 +00:00
name: re3.dll