Skip to content

Commit e6666f7

Browse files
1.3.0.3
2 parents e91da42 + e8a60ed commit e6666f7

File tree

107 files changed

+3844
-1703
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+3844
-1703
lines changed

.gitlab-ci.yml

+139
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
stages:
2+
- build
3+
- package
4+
- test
5+
6+
build:win:
7+
stage: build
8+
before_script:
9+
- chcp 65001
10+
- git submodule update --init --recursive
11+
- "Get-ChildItem env:"
12+
script:
13+
- cd nuget
14+
- git clean -fxd .
15+
- pwsh BuildWindows.ps1
16+
tags:
17+
- windows
18+
- cuda
19+
artifacts:
20+
paths:
21+
- nuget/artifacts
22+
23+
build:cent:
24+
stage: build
25+
before_script:
26+
- git submodule update --init --recursive
27+
- export
28+
script:
29+
- cd nuget
30+
- pwsh BuildCentOS7.ps1
31+
tags:
32+
- linux
33+
- cuda
34+
artifacts:
35+
paths:
36+
- nuget/artifacts
37+
38+
build:ubuntu:
39+
stage: build
40+
before_script:
41+
- git submodule update --init --recursive
42+
- export
43+
script:
44+
- cd nuget
45+
- pwsh BuildUbuntu16.ps1
46+
tags:
47+
- linux
48+
- cuda
49+
artifacts:
50+
paths:
51+
- nuget/artifacts
52+
53+
build:osx:
54+
stage: build
55+
before_script:
56+
- git submodule update --init --recursive
57+
- export
58+
script:
59+
- cd nuget
60+
- pwsh BuildOSX.ps1
61+
tags:
62+
- osx
63+
artifacts:
64+
paths:
65+
- nuget/artifacts
66+
67+
package:
68+
stage: package
69+
before_script:
70+
- chcp 65001
71+
script:
72+
- cd nuget
73+
- pwsh CreateAllPackage.ps1
74+
tags:
75+
- windows
76+
dependencies:
77+
- build:win
78+
- build:ubuntu
79+
- build:cent
80+
- build:osx
81+
artifacts:
82+
paths:
83+
- nuget/*.nupkg
84+
85+
test:win:
86+
stage: test
87+
before_script:
88+
- chcp 65001
89+
script:
90+
- cd nuget
91+
- pwsh TestPackageWindows.ps1
92+
tags:
93+
- windows
94+
dependencies:
95+
- package
96+
artifacts:
97+
paths:
98+
- nuget/artifacts/test
99+
100+
test:cent:
101+
stage: test
102+
script:
103+
- cd nuget
104+
- pwsh TestPackageCentOS7.ps1
105+
tags:
106+
- linux
107+
- cuda
108+
dependencies:
109+
- package
110+
artifacts:
111+
paths:
112+
- nuget/artifacts/test
113+
114+
test:ubuntu:
115+
stage: test
116+
script:
117+
- cd nuget
118+
- pwsh TestPackageUbuntu16.ps1
119+
tags:
120+
- linux
121+
- cuda
122+
dependencies:
123+
- package
124+
artifacts:
125+
paths:
126+
- nuget/artifacts/test
127+
128+
test:osx:
129+
stage: test
130+
script:
131+
- cd nuget
132+
- pwsh TestPackageOSX.ps1
133+
tags:
134+
- osx
135+
dependencies:
136+
- package
137+
artifacts:
138+
paths:
139+
- nuget/artifacts/test

.gitmodules

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[submodule "src/DlibDotNet"]
22
path = src/DlibDotNet
3-
url = https://github.com/takuya-takeuchi/DlibDotNet
3+
url = https://github.com/takuya-takeuchi/DlibDotNet
4+
ignore = dirty

ExecuteTest.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$CodecovVersion = "1.10.0"
1+
$CodecovVersion = "1.12.4"
22

33
# check Codecov Token
44
$token = $env:CODECOV_TOKEN
@@ -19,7 +19,7 @@ dotnet add test\FaceRecognitionDotNet.Tests\FaceRecognitionDotNet.Tests.csproj p
1919

2020
Write-Host "Start Test and collect Coverage." -ForegroundColor Green
2121
# https://github.com/tonerdo/coverlet/blob/master/Documentation/MSBuildIntegration.md
22-
dotnet test test\FaceRecognitionDotNet.Tests\FaceRecognitionDotNet.Tests.csproj `
22+
dotnet test test\FaceRecognitionDotNet.Tests\FaceRecognitionDotNet.Tests.csproj -v=normal `
2323
/p:CollectCoverage=true `
2424
/p:CoverletOutputFormat=opencover `
2525
/p:Exclude="[DlibDotNet]*"

0 commit comments

Comments
 (0)