Browse Source

Remove extra language resources before build

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

7
Jenkinsfile vendored

@ -12,10 +12,9 @@ node("Diligence") {
}
try {
stage('Build') {
sh "dotnet build StabilityMatrix.Core -r linux-x64 -c Release -p:ExcludeAssets=\"all\" -p:SatelliteResourceLanguages=\"en\" --no-self-contained"
sh "dotnet build StabilityMatrix.Avalonia -r linux-x64 -c Release -p:ExcludeAssets=\"all\" -p:SatelliteResourceLanguages=\"en\" --no-self-contained"
sh "dotnet build StabilityMatrix.Tests -r linux-x64 -c Release -p:ExcludeAssets=\"all\" -p:SatelliteResourceLanguages=\"en\" --no-self-contained"
stage('PreBuild') {
sh "rm ./StabilityMatrix.Avalonia/Languages/Resources.zh-Hans.resx"
sh "rm ./StabilityMatrix.Avalonia/Languages/Resources.zh-Hant.resx"
}
stage('Test') {

Loading…
Cancel
Save