[java-plugin-storage-jdbc] branch main updated: Fix some typos in pipeline
Rod Widdowson
rdw at steadingsoftware.com
Fri Apr 12 12:29:18 UTC 2024
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-plugin-storage-jdbc.
View the commit online:
http://git.shibboleth.net/view/?p=java-plugin-storage-jdbc.git;a=commit;h=6b83afb42f2ba2f5fcd11215bf239bcfeb15c8b5
The following commit(s) were added to refs/heads/main by this push:
new 6b83afb Fix some typos in pipeline
6b83afb is described below
commit 6b83afb42f2ba2f5fcd11215bf239bcfeb15c8b5
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Fri Apr 12 13:27:48 2024 +0100
Fix some typos in pipeline
---
resources/jenkins/idp-versions.jenkinsfile | 25 +++++++++++++++----------
1 file changed, 15 insertions(+), 10 deletions(-)
diff --git a/resources/jenkins/idp-versions.jenkinsfile b/resources/jenkins/idp-versions.jenkinsfile
index 90fc4a4..ac33806 100644
--- a/resources/jenkins/idp-versions.jenkinsfile
+++ b/resources/jenkins/idp-versions.jenkinsfile
@@ -37,34 +37,39 @@ pipeline {
stage('Test 5.0.0') {
steps {
- dir('java-plugin-storage-jdbc')
- sh 'mvn clean test -D idp.version=5.0.0'
+ dir('java-plugin-storage-jdbc') {
+ sh 'mvn clean test -D idp.version=5.0.0'
+ }
}
}
stage('Test 5.1.0') {
steps {
- dir('java-plugin-storage-jdbc')
- sh 'mvn clean test -D idp.version=5.1.0'
+ dir('java-plugin-storage-jdbc') {
+ sh 'mvn clean test -D idp.version=5.1.0'
+ }
}
}
stage('Test 5.1.1') {
steps {
- dir('java-plugin-storage-jdbc')
- sh 'mvn clean test -D idp.version=5.1.1'
+ dir('java-plugin-storage-jdbc') {
+ sh 'mvn clean test -D idp.version=5.1.1'
+ }
}
}
/* 2) Test currrent idp version against every (potentially) supported plugin version */
stage('Test IdP SNAPSHOT against plugin Release 2.0') {
steps {
- dir('java-plugin-storage-jdbc')
- sh 'mvn clean test -D idp.version=5.1.2-SNAPSHOT'
+ dir('java-plugin-storage-jdbc') {
+ sh 'mvn clean test -D idp.version=5.1.2-SNAPSHOT'
+ }
}
}
stage('Test IdP SNAPSHOT against plugin SNAPSHOT') {
steps {
- dir('java-plugin-storage-jdbc-2.0.0')
- sh 'mvn clean test -D idp.version=5.1.2-SNAPSHOT'
+ dir('java-plugin-storage-jdbc-2.0.0') {
+ sh 'mvn clean test -D idp.version=5.1.2-SNAPSHOT'
+ }
}
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list