diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-04 22:16:13 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-04 22:22:57 +0200 |
commit | 24804b2e00866486d4b16e727a25fc43185e8762 (patch) | |
tree | 80b03026378d2872c261065446d132b0673ef62c /vars | |
parent | 192c862e86dfa08db9b5f39c6e30732557dc2b65 (diff) | |
download | vyos-build-24804b2e00866486d4b16e727a25fc43185e8762.tar.gz vyos-build-24804b2e00866486d4b16e727a25fc43185e8762.zip |
Jenkins: lib: echo change set path for further optimisation
Currently on repo push all jobs are build - not only the required ones. This
commit aims to identify the root cause and limit the amount of CPU time used
to build packages.
Diffstat (limited to 'vars')
-rw-r--r-- | vars/getChangeSetPath.groovy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vars/getChangeSetPath.groovy b/vars/getChangeSetPath.groovy index f046d7cc..195f999a 100644 --- a/vars/getChangeSetPath.groovy +++ b/vars/getChangeSetPath.groovy @@ -20,6 +20,7 @@ def call() { tmp = "**/" + tmp + "*" else tmp = "**/*" + echo tmp return tmp } |