diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-07-24 20:45:54 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-07-24 21:25:01 +0200 |
commit | 814b4f9a8e81880fb5170d350ac84c9a36590b16 (patch) | |
tree | a42b9a70d08d9707b48603c180c56ddc473ee447 /packages/minisign | |
parent | 17527d43a93cc4dec19aad098322dcf37b9ac975 (diff) | |
download | vyos-build-814b4f9a8e81880fb5170d350ac84c9a36590b16.tar.gz vyos-build-814b4f9a8e81880fb5170d350ac84c9a36590b16.zip |
Jenkins: only build packages if the package changes at all - skip otherwise
This will only run the Jenkins Pipeline if Git detects a change in the
specified file path. If no change is found in the path, the individual Pipeline
statges are skipped.
(cherry picked from commit 1c3e5e18fd746bbb6ccd4a09d1fec1bed2f8316b)
Diffstat (limited to 'packages/minisign')
-rw-r--r-- | packages/minisign/Jenkinsfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/minisign/Jenkinsfile b/packages/minisign/Jenkinsfile index b9ec5788..156e5848 100644 --- a/packages/minisign/Jenkinsfile +++ b/packages/minisign/Jenkinsfile @@ -28,4 +28,4 @@ def pkgList = [ 'buildCmd': 'cd ..; ./build-minisign.sh'], ] // Start package build using library function from https://github.com/vyos/vyos-build -buildPackage('minisign', pkgList, null) +buildPackage('minisign', pkgList, null, "**/packages/minisign/*") |