mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 21:30:24 +00:00
61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
# version format
|
|
version: 2.1.0-{build}
|
|
|
|
# pull request template
|
|
pull_requests:
|
|
do_not_increment_build_number: true
|
|
|
|
# vm template
|
|
image: Visual Studio 2022
|
|
|
|
# environment variables
|
|
environment:
|
|
EnableNuGetPackageRestore: true
|
|
|
|
# msbuild configuration
|
|
platform:
|
|
- Any CPU
|
|
configuration:
|
|
- Debug
|
|
|
|
# install dependencies
|
|
install:
|
|
- ps: appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
|
|
- cd %APPVEYOR_BUILD_FOLDER%
|
|
- git submodule update --init --recursive
|
|
|
|
# pre-build script
|
|
before_build:
|
|
- nuget restore
|
|
|
|
# build step
|
|
build:
|
|
verbosity: minimal
|
|
project: BurnOutSharp.sln
|
|
|
|
# post-build step
|
|
after_build:
|
|
- cd Test\bin\Debug
|
|
- 7z a BurnOutSharp_net48.zip net48\*
|
|
- 7z a BurnOutSharp_netcoreapp3.1.zip netcoreapp3.1\*
|
|
- 7z a BurnOutSharp_net5.0.zip net5.0\*
|
|
- 7z a BurnOutSharp_net6.0.zip net6.0\*
|
|
|
|
# success/failure tracking
|
|
on_success:
|
|
- ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1
|
|
- ps: ./send.ps1 success $env:WEBHOOK_URL
|
|
on_failure:
|
|
- ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1
|
|
- ps: ./send.ps1 failure $env:WEBHOOK_URL
|
|
|
|
# artifact linking
|
|
artifacts:
|
|
- path: Test\bin\Debug\BurnOutSharp_net48.zip
|
|
name: BurnOutSharp (.NET Framework 4.8)
|
|
- path: Test\bin\Debug\BurnOutSharp_netcoreapp3.1.zip
|
|
name: BurnOutSharp (.NET Core 3.1)
|
|
- path: Test\bin\Debug\BurnOutSharp_net5.0.zip
|
|
name: BurnOutSharp (.NET 5.0)
|
|
- path: Test\bin\Debug\BurnOutSharp_net6.0.zip
|
|
name: BurnOutSharp (.NET 6.0) |