diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-10-06 11:36:09 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-10-06 11:36:09 +0200 |
commit | aca46a9270bba6bcb50cedbbeafaf1279ab8c82b (patch) | |
tree | 1c669fb6e58a3af765632abbc8337e0db45030e3 /scripts | |
parent | 173aaa25b60efa45b402b68f9b193cf9f83b3746 (diff) | |
parent | 45a9ea3c32183c0b0e7bbcabbe41dbe8d6337744 (diff) | |
download | vyos-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-x | scripts/list-package-arch | 7 |
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 |