props/Jenkinsfile

56 lines
2.5 KiB
Plaintext
Raw Normal View History

pipeline {
agent {
kubernetes {
2024-07-19 06:53:55 +00:00
cloud 'Reslate Systems'
defaultContainer 'conda'
}
}
stages {
stage("Install") {
2022-04-25 08:56:41 +00:00
steps {
2024-07-19 06:55:41 +00:00
sh 'conda env update -n base --file environment.yml -q'
sh 'dotnet restore Props/Props.csproj'
sh 'dotnet restore Props.Tests/Props.Tests.csproj'
sh 'dotnet restore Props.Shop/Props.Shop.sln'
sh 'npm install --prefix ./Props'
2022-04-25 08:56:41 +00:00
}
}
stage("Props.Shop") {
stages {
stage("Test") {
steps {
sh 'dotnet test --logger xunit --no-restore Props.Shop/Adafruit.Tests/Props.Shop.Adafruit.Tests.csproj'
2022-04-25 07:44:05 +00:00
xunit([xUnitDotNet(excludesPattern: '', pattern: 'Props.Shop/*.Tests/TestResults/*.xml', stopProcessingIfError: true)])
}
}
stage("Publish") {
steps {
sh 'dotnet publish --configuration Release --output output/shop-modules Props.Shop/Props.Shop.sln'
fingerprint 'output/shop-modules/**/Props.Shop.*'
sh 'cp ./Props.Shop/output/shop-modules/**/*.dll ./Props.Shop/output/shop-modules/**/*.deps.json ./Props/shops/.'
}
}
}
}
stage("Props") {
stages {
stage("Test") {
steps {
sh 'dotnet test --logger xunit --no-restore Props.Tests'
2022-04-25 07:44:05 +00:00
xunit([xUnitDotNet(excludesPattern: '', pattern: 'Props.Tests/TestResults/*.xml', stopProcessingIfError: true)])
}
}
stage("Publish") {
steps {
sh 'dotnet publish --configuration Release --output output/props/props-linux-x64 --runtime linux-x64 --self-contained Props'
sh 'dotnet publish --configuration Release --output output/props/props-win-x64 --runtime win-x64 --self-contained Props'
fingerprint 'output/props/**/Props*'
2022-04-26 08:48:05 +00:00
tar file: "output/props-linux-x64.tar.gz", archive: true, compress: true, dir: "output/props/props-linux-x64"
zip zipFile: "output/props-win-x64.zip", archive: true, dir: "output/props/props-win-x64"
}
}
}
}
}
}