diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-03-26 20:21:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-26 20:21:03 +0100 |
commit | a72885392a81d6e7e4440797cb1d857b39b88892 (patch) | |
tree | 0c536137c87dd13096e2c47db642f2083c06f6ec | |
parent | cf07aadf748208d483e59b920fb048b31d5549ab (diff) | |
download | libvyosconfig-a72885392a81d6e7e4440797cb1d857b39b88892.tar.gz libvyosconfig-a72885392a81d6e7e4440797cb1d857b39b88892.zip |
Jenkins: enable arm64 builds
-rw-r--r-- | Jenkinsfile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 3910d84..21a6829 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ -// Copyright (C) 2020 VyOS maintainers and contributors +// Copyright (C) 2020-2021 VyOS maintainers and contributors // // This program is free software; you can redistribute it and/or modify // in order to easy exprort images built to "external" world @@ -12,14 +12,12 @@ // // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. - @NonCPS // 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@crux')_ +@Library('vyos-build@current')_ -// Start package build using library function from https://github.com/c-po/vyos-build -def buildCmd = "eval \$(opam env --root=/opt/opam --set-root) && dpkg-buildpackage -b -us -uc -tc" -buildPackage(null, null, buildCmd) +// Start package build using library function from https://github.com/vyos/vyos-build +buildPackage(null, null, null, true) |