Browse Source

Add build stage

pull/137/head
Ionite 1 year ago
parent
commit
e4f70b6dde
No known key found for this signature in database
  1. 6
      Jenkinsfile

6
Jenkinsfile vendored

@ -12,6 +12,12 @@ node("Diligence") {
}
try {
stage('Build') {
sh "dotnet build StabilityMatrix.Core -r linux-x64 -c Release -p:ExcludeAssets=\"all\""
sh "dotnet build StabilityMatrix.Avalonia -r linux-x64 -c Release -p:ExcludeAssets=\"all\""
sh "dotnet build StabilityMatrix.Avalonia.Diagnostics -r linux-x64 -c Release -p:ExcludeAssets=\"all\""
}
stage('Test') {
sh "dotnet test StabilityMatrix.Tests"
}

Loading…
Cancel
Save