diff --git a/Jenkinsfile b/Jenkinsfile index ad3ec760..cc5e27c6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,6 +12,11 @@ node("Diligence") { } try { + stage('Build') { + sh "dotnet build StabilityMatrix.sln" + sh "cp -R ./StabilityMatrix.Tests/bin/Debug/net7.0/zh-Hans ./StabilityMatrix.Tests/bin/Debug/net7.0/zh-hans" + } + stage('Test') { sh "dotnet test StabilityMatrix.Tests" }