diff --git a/Jenkinsfile b/Jenkinsfile index 1b31b489..3eea6058 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,9 +13,9 @@ 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\"" + sh "dotnet build StabilityMatrix.Core -r linux-x64 --no-self-contained -c Release -p:ExcludeAssets=\"all\"" + sh "dotnet build StabilityMatrix.Avalonia -r linux-x64 --no-self-contained -c Release -p:ExcludeAssets=\"all\"" + sh "dotnet build StabilityMatrix.Tests --no-self-contained -r linux-x64 -c Release -p:ExcludeAssets=\"all\"" } stage('Test') {