Skip to content

Commit

Permalink
more encoding stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Apr 5, 2024
1 parent 73cc714 commit f7cab73
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@
</build>
</profile>
<profile>
<id>only-encoding</id>
<id>only-encoding-tests</id>
<activation>
<property>
<name>onlyEngoding</name>
Expand Down
28 changes: 28 additions & 0 deletions src/jenkins/huge-tests-encoding
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
pipeline {
agent any
options {
lock resource: 'htmlunit-test-ports'
disableConcurrentBuilds()
timestamps()
timeout(time: 25, unit: 'MINUTES')
}
tools {
jdk 'openjdk-11+28'
}
stages {
stage('Build') {
steps {
sh 'mvn clean test -P only-encoding-tests -Dgpg.skip -Djava.awt.headless=true'
}
}
}
post {
always {
junit allowEmptyResults: true, testResults: 'target/surefire-reports/**/*.xml'
recordIssues enabledForFailure: true, sourceCodeEncoding: 'UTF-8', tools: [java()]
step([$class: 'Mailer',
notifyEveryUnstableBuild: true,
recipients: "[email protected]"])
}
}
}

0 comments on commit f7cab73

Please sign in to comment.