mirror of
https://github.com/apache/struts.git
synced 2026-08-05 06:36:58 +00:00
Uses verify phase instead of just test to run integration tests
This commit is contained in:
@@ -49,7 +49,8 @@ jobs:
|
||||
distribution: adopt
|
||||
java-version: ${{ matrix.java }}
|
||||
- name: Build with Maven on Java ${{ matrix.java }}
|
||||
run: mvn -B -V -DskipAssembly test --no-transfer-progress
|
||||
if: matrix.java != '17'
|
||||
run: mvn -B -V -DskipAssembly verify --no-transfer-progress
|
||||
- name: Code coverage on Java ${{ matrix.java }}
|
||||
if: matrix.java == '17'
|
||||
env:
|
||||
|
||||
Vendored
+2
-2
@@ -89,7 +89,7 @@ pipeline {
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh './mvnw -B test'
|
||||
sh './mvnw -B verify'
|
||||
}
|
||||
post {
|
||||
always {
|
||||
@@ -124,7 +124,7 @@ pipeline {
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh './mvnw -B test'
|
||||
sh './mvnw -B verify'
|
||||
// step([$class: 'JiraIssueUpdater', issueSelector: [$class: 'DefaultIssueSelector'], scm: scm])
|
||||
}
|
||||
post {
|
||||
|
||||
Reference in New Issue
Block a user