Compare commits

...

2 Commits

Author SHA1 Message Date
9631cb4b6b Added for loop to iterate over all shop modules.
Some checks failed
ydeng/props/pipeline/head There was a failure building this commit
2024-07-19 18:06:01 +00:00
73cc43af3c Added output folder to gitignore. 2024-07-19 18:05:28 +00:00
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -575,3 +575,4 @@ cython_debug/
# Props
shop-data
Props/shops
output

6
Jenkinsfile vendored
View File

@ -25,7 +25,11 @@ pipeline {
}
stage("Publish") {
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'
fingerprint 'output/shop-modules/**/Props.Shop.*'
sh 'cp ./Props.Shop/output/shop-modules/**/*.dll ./Props.Shop/output/shop-modules/**/*.deps.json ./Props/shops/.'