Updated Jenkinsfile.

This commit is contained in:
Harrison Deng 2022-12-01 17:54:08 +00:00
parent a1401c63e9
commit 4cf1ff53a9

16
Jenkinsfile vendored
View File

@ -2,14 +2,18 @@ pipeline {
agent any
stages {
stage ("Install") {
sh "mamba env update --file environment.yml"
sh "echo 'mamba activate props' >> ~/.bashrc"
sh "dotnet restore GameServiceWarden"
sh "dotnet restore GameServiceWarden.Tests"
steps {
sh "mamba env update --file environment.yml"
sh "echo 'mamba activate props' >> ~/.bashrc"
sh "dotnet restore GameServiceWarden"
sh "dotnet restore GameServiceWarden.Tests"
}
}
stage ("Test") {
sh "sh 'dotnet test --logger xunit --no-restore GameServiceWarden.Tests"
xunit([xUnitDotNet(excludesPattern: '', pattern: 'GameServiceWarden.Tests/*.Tests/TestResults/*.xml', stopProcessingIfError: true)])
steps {
sh "sh 'dotnet test --logger xunit --no-restore GameServiceWarden.Tests"
xunit([xUnitDotNet(excludesPattern: '', pattern: 'GameServiceWarden.Tests/*.Tests/TestResults/*.xml', stopProcessingIfError: true)])
}
}
}
}