Compare commits
2 Commits
d0217c2166
...
9631cb4b6b
Author | SHA1 | Date | |
---|---|---|---|
9631cb4b6b | |||
73cc43af3c |
1
.gitignore
vendored
1
.gitignore
vendored
@ -575,3 +575,4 @@ cython_debug/
|
|||||||
# Props
|
# Props
|
||||||
shop-data
|
shop-data
|
||||||
Props/shops
|
Props/shops
|
||||||
|
output
|
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
@ -25,7 +25,11 @@ pipeline {
|
|||||||
}
|
}
|
||||||
stage("Publish") {
|
stage("Publish") {
|
||||||
steps {
|
steps {
|
||||||
sh 'conda run -n base dotnet publish --configuration Release --output output/shop-modules Props.Shop/**/*.csproj'
|
sh '''#!/bin/bash
|
||||||
|
for file in Props.Shop/**/*.csproj do
|
||||||
|
conda run -n base dotnet publish --configuration Release --output output/shop-modules $file
|
||||||
|
done
|
||||||
|
'''
|
||||||
sh 'rm output/shop-modules/**/*.Tests.dll'
|
sh 'rm output/shop-modules/**/*.Tests.dll'
|
||||||
fingerprint 'output/shop-modules/**/Props.Shop.*'
|
fingerprint 'output/shop-modules/**/Props.Shop.*'
|
||||||
sh 'cp ./Props.Shop/output/shop-modules/**/*.dll ./Props.Shop/output/shop-modules/**/*.deps.json ./Props/shops/.'
|
sh 'cp ./Props.Shop/output/shop-modules/**/*.dll ./Props.Shop/output/shop-modules/**/*.deps.json ./Props/shops/.'
|
||||||
|
Loading…
Reference in New Issue
Block a user