Skip to content

Commit

Permalink
Fix remote arquillian
Browse files Browse the repository at this point in the history
  • Loading branch information
kifj committed Mar 8, 2024
1 parent 0a38c3b commit 7ea57df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
11 changes: 3 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,9 @@ node {
.image('registry.x1/j7beck/x1-wildfly-stomp-test-it:1.8')
.withRun('-e MANAGEMENT=public -e HTTP=public --name stomp-test-it') {
c ->
try {
waitFor("http://${hostIp(c)}:9990/health/ready", 20, 3)
withMaven(maven: 'Maven-3.9', mavenSettingsConfig: mavenSetting) {
sh "mvn -Parq-remote verify -Djboss.managementAddress=${hostIp(c)}"
}
} finally {
junit '**/target/surefire-reports/TEST-*.xml'
jacoco(execPattern: '**/**.exec')
waitFor("http://${hostIp(c)}:9990/health/ready", 20, 3)
withMaven(maven: 'Maven-3.9', mavenSettingsConfig: mavenSetting) {
sh "mvn -Parq-remote verify -Djboss.managementAddress=${hostIp(c)}"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
</systemPropertyVariables>
<groups>Arquillian</groups>
<excludedgroups>Testcontainers,Unittests</excludedgroups>
<excludedGroups>Testcontainers,Unittests</excludedGroups>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 7ea57df

Please sign in to comment.