diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-20 23:14:28 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-20 23:26:39 +0200 |
commit | 9bf4f922da438624cf680b155d33158f07d6d2cc (patch) | |
tree | 2e5b9847352fdde9b63ea02ce539cebb813633fc | |
parent | 918700c5a56038529ac28ddfb86da96191f33604 (diff) | |
download | vyos-build-9bf4f922da438624cf680b155d33158f07d6d2cc.tar.gz vyos-build-9bf4f922da438624cf680b155d33158f07d6d2cc.zip |
packages: add build for FRR
-rw-r--r-- | packages/frr/Jenkinsfile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/frr/Jenkinsfile b/packages/frr/Jenkinsfile new file mode 100644 index 0000000..d661d75 --- /dev/null +++ b/packages/frr/Jenkinsfile @@ -0,0 +1,29 @@ +// Copyright (C) 2020 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 +// it under the terms of the GNU General Public License version 2 or later as +// published by the Free Software Foundation. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// 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 +@Library('vyos-build@current') + +def pkgList = [ + // pkg-libnftnl + ['name': 'frr', + 'scmCommit': 'frr-7.3.1', + 'scmUrl': 'https://github.com/FRRouting/frr.git', + 'buildCmd': '''./tools/tarsource.sh -V; dpkg-buildpackage -us -uc -Ppkg.frr.rtrlib'''], +] + +buildPackage('FRRouting', pkgList) |