summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-10-06 11:36:09 +0200
committerChristian Poessinger <christian@poessinger.com>2019-10-06 11:36:09 +0200
commitaca46a9270bba6bcb50cedbbeafaf1279ab8c82b (patch)
tree1c669fb6e58a3af765632abbc8337e0db45030e3 /scripts
parent173aaa25b60efa45b402b68f9b193cf9f83b3746 (diff)
parent45a9ea3c32183c0b0e7bbcabbe41dbe8d6337744 (diff)
downloadvyos-build-aca46a9270bba6bcb50cedbbeafaf1279ab8c82b.tar.gz
vyos-build-aca46a9270bba6bcb50cedbbeafaf1279ab8c82b.zip
Merge branch 'current' into equuleus
* current: Jenkins: add getGitRepoName() Docker: ARM: add missing no--check-valid-until files Kernel: T1708: update to Linux 4.19.76 Jenkins: explicitly set GitHub status is no longer required Docker: we only need LUA 5.2 for Accel-PPP build Docker: add liblua5.2-dev to accel-ppp dependencies [Jenkinsfile] Call a script that creates latest rolling release symlink Jenkins: run on all nodes that support Docker Packages: remove vyatta-op-dhcp-server Docker: add dkms Add helper to list individual package architectues add hooks for autobuild
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/list-package-arch7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/list-package-arch b/scripts/list-package-arch
new file mode 100755
index 00000000..10ac02d3
--- /dev/null
+++ b/scripts/list-package-arch
@@ -0,0 +1,7 @@
+#!/bin/bash
+# Execute this script from the vyos-build top directory
+# Will generate a list of architectures in each repository
+for a in $(echo vyos-build; ./scripts/build-packages -l | egrep -e '^ \* ' | sed 's/^ \* //'); do
+ n=$(curl https://raw.githubusercontent.com/vyos/${a}/current/debian/control 2>/dev/null | grep "Architecture" | tr '\n' ',')
+ printf "%-24s %s \n" "${a}" "${n}"
+done