This is an automated email from the ASF dual-hosted git repository.
rec pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/uima-build-jenkins-shared-library.git
The following commit(s) were added to refs/heads/main by this push:
new 4738849 [UIMA-6465] Check out code into subfolder of Jenkins workspace
4738849 is described below
commit 4738849e3200f357629d9e5d40d9d43e8f146897
Author: Richard Eckart de Castilho <[email protected]>
AuthorDate: Mon May 30 12:06:59 2022 +0200
[UIMA-6465] Check out code into subfolder of Jenkins workspace
- Disable default checkout
---
vars/defaultPipeline.groovy | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/vars/defaultPipeline.groovy b/vars/defaultPipeline.groovy
index 0ace24b..c33f2dd 100644
--- a/vars/defaultPipeline.groovy
+++ b/vars/defaultPipeline.groovy
@@ -66,7 +66,11 @@ def call(body) {
agent {
label labelValue ? "(${labelValue}) && ${PLATFORM}" : "${PLATFORM}"
}
-
+
+ options {
+ skipDefaultCheckout()
+ }
+
stages {
stage("Checkout code") {
steps {