forked from Unity-Technologies/com.unity.netcode.gameobjects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
33 lines (23 loc) · 782 Bytes
/
appveyor.yml
File metadata and controls
33 lines (23 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: '{branch}-{build}'
skip_commits:
files:
- docs/*
before_build:
- nuget restore
build:
project: MLAPI.sln
verbosity: minimal
before_package:
- cd C:\projects\mlapi
- powershell "& "".\BuildUnityPackages.ps1"""
artifacts:
- path: 'MLAPI\bin\Debug\MLAPI*'
- path: '*.unitypackage'
image: Visual Studio 2017
test_script:
- .\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -returntargetcode -register:user -target:"nunit3-console.exe" -targetargs:"MLAPI.Tests\bin\Debug\MLAPI.Tests.dll" -output:"coverage.xml" -filter:"+[MLAPI*]* -[MLAPI.Tests*]* "
after_test:
- ps: |
$env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh
bash codecov.sh -f "coverage.xml"