projects
/
jFCPlib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e8e6fbf
)
💚 Use test phase instead of verify phase
author
David ‘Bombe’ Roden
<bombe@freenetproject.org>
Sat, 23 Nov 2024 12:57:18 +0000
(13:57 +0100)
committer
David ‘Bombe’ Roden
<bombe@freenetproject.org>
Sat, 23 Nov 2024 14:09:17 +0000
(15:09 +0100)
Jenkinsfile
patch
|
blob
|
history
diff --git
a/Jenkinsfile
b/Jenkinsfile
index
7360cda
..
847401d
100644
(file)
--- a/
Jenkinsfile
+++ b/
Jenkinsfile
@@
-19,7
+19,7
@@
pipeline {
jdk 'OpenJDK 8'
}
steps {
- sh './mvnw
verify
'
+ sh './mvnw
test
'
}
post {
always {
@@
-44,7
+44,7
@@
pipeline {
}
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
-
sh './mvnw clean verify
'
+
sh './mvnw clean test
'
}
}
}
@@
-54,7
+54,7
@@
pipeline {
}
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
-
sh './mvnw clean verify
'
+
sh './mvnw clean test
'
}
}
}