diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-12 23:00:03 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-03-12 23:00:05 +0100 |
commit | c2f1de4c6a9e96f7c2d5d12938f43b9b30810ce5 (patch) | |
tree | 8603d4677c3ca22bb7f29f52667ee56bb36c0933 | |
parent | 48f7d41a60770732f28b920280b69177db4221f0 (diff) | |
download | vyos-build-c2f1de4c6a9e96f7c2d5d12938f43b9b30810ce5.tar.gz vyos-build-c2f1de4c6a9e96f7c2d5d12938f43b9b30810ce5.zip |
Jenkins: select proper source version of build pipeline library
Packages got backported from current, but we need to select the proper pipeline
version from sagitta branch.
-rw-r--r-- | packages/ethtool/Jenkinsfile | 2 | ||||
-rw-r--r-- | packages/isc-dhcp/Jenkinsfile | 2 | ||||
-rw-r--r-- | packages/pmacct/Jenkinsfile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/packages/ethtool/Jenkinsfile b/packages/ethtool/Jenkinsfile index bddd3b63..9154e823 100644 --- a/packages/ethtool/Jenkinsfile +++ b/packages/ethtool/Jenkinsfile @@ -18,7 +18,7 @@ // Using a version specifier library, use 'current' branch. The underscore (_) // is not a typo! You need this underscore if the line immediately after the // @Library annotation is not an import statement! -@Library('vyos-build@current')_ +@Library('vyos-build@sagitta')_ def pkgList = [ ['name': 'ethtool', diff --git a/packages/isc-dhcp/Jenkinsfile b/packages/isc-dhcp/Jenkinsfile index 02af15d9..ce334c92 100644 --- a/packages/isc-dhcp/Jenkinsfile +++ b/packages/isc-dhcp/Jenkinsfile @@ -17,7 +17,7 @@ // Using a version specifier library, use 'current' branch. The underscore (_) // is not a typo! You need this underscore if the line immediately after the // @Library annotation is not an import statement! -@Library('vyos-build@current')_ +@Library('vyos-build@sagitta')_ // NOTE: we can build with -d as the libbpf dependency is installed manually // and not via a DEB package diff --git a/packages/pmacct/Jenkinsfile b/packages/pmacct/Jenkinsfile index 19af2c9b..57830b32 100644 --- a/packages/pmacct/Jenkinsfile +++ b/packages/pmacct/Jenkinsfile @@ -18,7 +18,7 @@ // Using a version specifier library, use 'current' branch. The underscore (_) // is not a typo! You need this underscore if the line immediately after the // @Library annotation is not an import statement! -@Library('vyos-build@current')_ +@Library('vyos-build@sagitta')_ def package_name = 'pmacct' // "sudo apt-get remove git -y" is necessary for solving this issue https://vyos.dev/T5663 |