This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch feature/SLING-11671 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resourceresolver.git
commit 530260304cce1f7768934de0416ea767e789e6ce Author: Robert Munteanu <[email protected]> AuthorDate: Fri Nov 11 15:03:11 2022 +0100 SLING-11671 - Jenkins: allow running Sling Starter ITs with a given module based on the Sling module descriptor Run Sling Starter ITs with the build and pick up the Jenkinsfile from a branch --- .sling-module.json | 9 +++++++++ Jenkinsfile | 1 + 2 files changed, 10 insertions(+) diff --git a/.sling-module.json b/.sling-module.json new file mode 100644 index 0000000..4681853 --- /dev/null +++ b/.sling-module.json @@ -0,0 +1,9 @@ +{ + "jenkins": { + "starterITExecutions": { + "13-SNAPSHOT": { + "jdks:" [8, 11] + } + } + } +} diff --git a/Jenkinsfile b/Jenkinsfile index f582519..ce042b5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,4 +17,5 @@ * under the License. */ +@Library('sling@feature/SLING-11671') slingOsgiBundleBuild()
