1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 19:27:24 +08:00
osu-lazer/appveyor.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
922 B
YAML
Raw Normal View History

2018-04-20 13:41:57 +08:00
clone_depth: 1
version: '{branch}-{build}'
image: Visual Studio 2022
cache:
- '%LOCALAPPDATA%\NuGet\v3-cache -> appveyor.yml'
2019-11-24 20:39:11 +08:00
dotnet_csproj:
patch: true
file: 'osu.Game\osu.Game.csproj' # Use wildcard when it's able to exclude Xamarin projects
version: '0.0.{build}'
2019-11-23 22:10:27 +08:00
before_build:
- cmd: dotnet --info # Useful when version mismatch between CI and local
2022-12-19 15:39:03 +08:00
- cmd: dotnet workload install maui-android # Change to `dotnet workload restore` once there's no old projects
- cmd: dotnet workload install maui-ios # Change to `dotnet workload restore` once there's no old projects
- cmd: nuget restore -verbosity quiet # Only nuget.exe knows both new (.NET Core) and old (Xamarin) projects
2019-11-23 22:10:27 +08:00
build:
project: osu.sln
parallel: true
verbosity: minimal
publish_nuget: true
2019-11-24 16:53:57 +08:00
after_build:
- ps: .\InspectCode.ps1
2019-11-23 23:13:30 +08:00
test:
assemblies:
except:
- '**\*Android*'
- '**\*iOS*'
2019-11-25 17:14:35 +08:00
- 'build\**\*'