Skip to content

Commit

Permalink
Added sbt option -Dsbt.log.noformat=true
Browse files Browse the repository at this point in the history
  • Loading branch information
abrighton committed Nov 26, 2024
1 parent af9aed3 commit 1f27dba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions jenkins/stil-nightly
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ pipeline {
steps {
sh "cs java --jvm temurin:1.17.0 -version"
sh "sbt scalafmtCheck"
sh "eval \$(cs java --jvm temurin:1.17.0 --env) && sbt clean makeSite"
sh "eval \$(cs java --jvm temurin:1.17.0 --env) && sbt -DenableFatalWarnings=true ';set every Seq(scalafmtOnCompile := false); test:compile; multi-jvm:compile;'"
sh "eval \$(cs java --jvm temurin:1.17.0 --env) && sbt publishLocal"
sh "eval \$(cs java --jvm temurin:1.17.0 --env) && sbt -Dsbt.log.noformat=true clean makeSite"
sh "eval \$(cs java --jvm temurin:1.17.0 --env) && sbt -Dsbt.log.noformat=true -DenableFatalWarnings=true ';set every Seq(scalafmtOnCompile := false); test:compile; multi-jvm:compile;'"
sh "eval \$(cs java --jvm temurin:1.17.0 --env) && sbt -Dsbt.log.noformat=true publishLocal"
}
}

Expand All @@ -34,8 +34,8 @@ pipeline {

post {
always {
sh "sbt -DenableCoverage=true coverageReport"
sh "sbt coverageAggregate"
sh "sbt -Dsbt.log.noformat=true -DenableCoverage=true coverageReport"
sh "sbt -Dsbt.log.noformat=true coverageAggregate"
junit testResults: '**/target/test-reports/*.xml', allowEmptyResults: true
publishHTML(target: [
allowMissing : true,
Expand All @@ -62,7 +62,7 @@ pipeline {

stage('Multi-Jvm Test') {
steps {
sh "eval \$(cs java --jvm temurin:1.17.0 --env) && sbt -DgenerateStoryReport=true esw-integration-test/multi-jvm:test"
sh "eval \$(cs java --jvm temurin:1.17.0 --env) && sbt -Dsbt.log.noformat=true -DgenerateStoryReport=true esw-integration-test/multi-jvm:test"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion jenkins/stil-weekly
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pipeline {

stage('Paradox Validate Links') {
steps {
sh "sbt docs/paradoxValidateLinks"
sh "sbt -Dsbt.log.noformat=true docs/paradoxValidateLinks"
}
}
}
Expand Down

0 comments on commit 1f27dba

Please sign in to comment.