You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by kw...@apache.org on 2021/10/07 07:10:40 UTC

[jackrabbit-filevault-jenkins-lib] branch master updated: fix some typos

This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
     new 37679f0  fix some typos
37679f0 is described below

commit 37679f099dd13044cede6e9507a3aeb0ea8832c1
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Thu Oct 7 09:10:35 2021 +0200

    fix some typos
---
 README.md                          | 4 ++--
 vars/fileVaultMavenStdBuild.groovy | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 60b47ba..dbf1952 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
 # Jenkins Shared Library
 
-This library is used for all FileVault Jenkins builds and enabled on https://ci-builds.apache.org/job/Jackrabbit/job/filevault/ and ...
+This library is used for all FileVault Jenkins builds and enabled on <https://ci-builds.apache.org/job/Jackrabbit/job/filevault/>
 
 It follows the structure outlined at <https://www.jenkins.io/doc/book/pipeline/shared-libraries/>
 
 
-It is supposed to be called in a Jenkinsfile like this
+It is supposed to be called in a `Jenkinsfile` like this
 
 ```
 fileVaultMavenStdBuild([11, 8, 17], 11, [ "ubuntu", "Windows"], "ubuntu")
diff --git a/vars/fileVaultMavenStdBuild.groovy b/vars/fileVaultMavenStdBuild.groovy
index 7aeb3ad..1c6d982 100644
--- a/vars/fileVaultMavenStdBuild.groovy
+++ b/vars/fileVaultMavenStdBuild.groovy
@@ -102,6 +102,7 @@ def stagesFor(List<Integer> jdkVersions, int mainJdkVersion, List<String> nodeLa
     return stageMap
 }
 
+// valid node labels in https://cwiki.apache.org/confluence/display/INFRA/ci-builds.apache.org
 def call(List<Integer> jdkVersions, int mainJdkVersion, List<String> nodeLabels, String mainNodeLabel) {
     parallel stagesFor(jdkVersions, mainJdkVersion, nodeLabels, mainNodeLabel)
 }
\ No newline at end of file