@@ -22,10 +22,6 @@ before_package:
22
22
- powershell "& "".\BuildUnityPackages.ps1"""
23
23
24
24
artifacts :
25
- - path : ' MLAPI\bin\Debug\MLAPI.*'
26
- - path : ' MLAPI\bin\Debug\Lite\MLAPI.*'
27
- - path : ' MLAPI\bin\Release\MLAPI.*'
28
- - path : ' MLAPI\bin\Release\Lite\MLAPI.*'
29
25
- path : ' *.unitypackage'
30
26
31
27
image : Visual Studio 2017
36
32
matrix :
37
33
only :
38
34
- configuration : Debug
39
-
40
35
test_script :
41
36
- .\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*]* "
42
- after_test :
43
- - ps : |
44
- $env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
45
- Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh
46
- bash codecov.sh -f "coverage.xml"
37
+ artifacts :
38
+ - path : ' MLAPI\bin\Debug\MLAPI*'
47
39
-
48
40
matrix :
49
41
only :
50
42
- configuration : Debug_Lite
51
-
52
43
test_script :
53
44
- .\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -returntargetcode -register:user -target:"nunit3-console.exe" -targetargs:"MLAPI-Tests\bin\Lite\Debug\MLAPI-Tests.dll" -output:"coverage.xml" -filter:"+[MLAPI*]* -[MLAPI-Tests*]* "
54
- after_test :
45
+ artifacts :
46
+ - path : ' MLAPI\bin\Debug\Lite\MLAPI*'
47
+ -
48
+ matrix :
49
+ only :
50
+ - configuration : Release
51
+ test_script :
52
+ - .\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -returntargetcode -register:user -target:"nunit3-console.exe" -targetargs:"MLAPI-Tests\bin\Release\MLAPI-Tests.dll" -output:"coverage.xml" -filter:"+[MLAPI*]* -[MLAPI-Tests*]* "
53
+ artifacts :
54
+ - path : ' MLAPI\bin\Release\MLAPI*'
55
+ -
56
+ matrix :
57
+ only :
58
+ - configuration : Release_Lite
59
+ test_script :
60
+ - .\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -returntargetcode -register:user -target:"nunit3-console.exe" -targetargs:"MLAPI-Tests\bin\Lite\Release\MLAPI-Tests.dll" -output:"coverage.xml" -filter:"+[MLAPI*]* -[MLAPI-Tests*]* "
61
+ artifacts :
62
+ - path : ' MLAPI\bin\Release\Lite\MLAPI*'
63
+
64
+
65
+ after_test :
55
66
- ps : |
56
67
$env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
57
68
Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh
58
- bash codecov.sh -f "coverage.xml"
59
-
60
-
61
-
62
- # test_script:
63
- # - .\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*]* "
69
+ bash codecov.sh -f "coverage.xml"
0 commit comments