summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-06-20 23:14:28 +0200
committerChristian Poessinger <christian@poessinger.com>2020-06-20 23:26:39 +0200
commit9bf4f922da438624cf680b155d33158f07d6d2cc (patch)
tree2e5b9847352fdde9b63ea02ce539cebb813633fc /packages
parent918700c5a56038529ac28ddfb86da96191f33604 (diff)
downloadvyos-build-9bf4f922da438624cf680b155d33158f07d6d2cc.tar.gz
vyos-build-9bf4f922da438624cf680b155d33158f07d6d2cc.zip
packages: add build for FRR
Diffstat (limited to 'packages')
-rw-r--r--packages/frr/Jenkinsfile29
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)