-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
107 changed files
with
3,844 additions
and
1,703 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
stages: | ||
- build | ||
- package | ||
- test | ||
|
||
build:win: | ||
stage: build | ||
before_script: | ||
- chcp 65001 | ||
- git submodule update --init --recursive | ||
- "Get-ChildItem env:" | ||
script: | ||
- cd nuget | ||
- git clean -fxd . | ||
- pwsh BuildWindows.ps1 | ||
tags: | ||
- windows | ||
- cuda | ||
artifacts: | ||
paths: | ||
- nuget/artifacts | ||
|
||
build:cent: | ||
stage: build | ||
before_script: | ||
- git submodule update --init --recursive | ||
- export | ||
script: | ||
- cd nuget | ||
- pwsh BuildCentOS7.ps1 | ||
tags: | ||
- linux | ||
- cuda | ||
artifacts: | ||
paths: | ||
- nuget/artifacts | ||
|
||
build:ubuntu: | ||
stage: build | ||
before_script: | ||
- git submodule update --init --recursive | ||
- export | ||
script: | ||
- cd nuget | ||
- pwsh BuildUbuntu16.ps1 | ||
tags: | ||
- linux | ||
- cuda | ||
artifacts: | ||
paths: | ||
- nuget/artifacts | ||
|
||
build:osx: | ||
stage: build | ||
before_script: | ||
- git submodule update --init --recursive | ||
- export | ||
script: | ||
- cd nuget | ||
- pwsh BuildOSX.ps1 | ||
tags: | ||
- osx | ||
artifacts: | ||
paths: | ||
- nuget/artifacts | ||
|
||
package: | ||
stage: package | ||
before_script: | ||
- chcp 65001 | ||
script: | ||
- cd nuget | ||
- pwsh CreateAllPackage.ps1 | ||
tags: | ||
- windows | ||
dependencies: | ||
- build:win | ||
- build:ubuntu | ||
- build:cent | ||
- build:osx | ||
artifacts: | ||
paths: | ||
- nuget/*.nupkg | ||
|
||
test:win: | ||
stage: test | ||
before_script: | ||
- chcp 65001 | ||
script: | ||
- cd nuget | ||
- pwsh TestPackageWindows.ps1 | ||
tags: | ||
- windows | ||
dependencies: | ||
- package | ||
artifacts: | ||
paths: | ||
- nuget/artifacts/test | ||
|
||
test:cent: | ||
stage: test | ||
script: | ||
- cd nuget | ||
- pwsh TestPackageCentOS7.ps1 | ||
tags: | ||
- linux | ||
- cuda | ||
dependencies: | ||
- package | ||
artifacts: | ||
paths: | ||
- nuget/artifacts/test | ||
|
||
test:ubuntu: | ||
stage: test | ||
script: | ||
- cd nuget | ||
- pwsh TestPackageUbuntu16.ps1 | ||
tags: | ||
- linux | ||
- cuda | ||
dependencies: | ||
- package | ||
artifacts: | ||
paths: | ||
- nuget/artifacts/test | ||
|
||
test:osx: | ||
stage: test | ||
script: | ||
- cd nuget | ||
- pwsh TestPackageOSX.ps1 | ||
tags: | ||
- osx | ||
dependencies: | ||
- package | ||
artifacts: | ||
paths: | ||
- nuget/artifacts/test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[submodule "src/DlibDotNet"] | ||
path = src/DlibDotNet | ||
url = https://github.com/takuya-takeuchi/DlibDotNet | ||
url = https://github.com/takuya-takeuchi/DlibDotNet | ||
ignore = dirty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.