diff options
author | Erich Eckner <git@eckner.net> | 2019-04-15 09:35:44 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-04-15 09:35:44 +0200 |
commit | 43972ea8de2458a5f9d7aa985737b7af6bcbb2ac (patch) | |
tree | cf6e86df74853be47001f8ec00103028a436e79f /bin/get-assignment | |
parent | f11e9fd8d4b8b91ecf7d320bea96babb5531cf36 (diff) | |
download | builder-43972ea8de2458a5f9d7aa985737b7af6bcbb2ac.tar.xz |
bin/get-assignment: tell the build slave, which architecture the build-assignment has
Diffstat (limited to 'bin/get-assignment')
-rwxr-xr-x | bin/get-assignment | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/get-assignment b/bin/get-assignment index 4bd8c5b..1c6f3b8 100755 --- a/bin/get-assignment +++ b/bin/get-assignment @@ -26,10 +26,13 @@ hand_out_assignment() { printf 'SELECT ' printf '`package_sources`.`%s`,' \ 'pkgbase' 'git_revision' 'mod_git_revision' - printf '`upstream_repositories`.`name`,`binary_packages`.`sub_pkgrel`' + printf '`upstream_repositories`.`name`,' + printf '`binary_packages`.`sub_pkgrel`,' + printf '`architectures`.`name`' printf ' FROM `upstream_repositories`' mysql_join_upstream_repositories_package_sources mysql_join_package_sources_build_assignments + mysql_join_build_assignments_architectures mysql_join_build_assignments_binary_packages mysql_join_binary_packages_binary_packages_in_repositories printf ' WHERE `binary_packages_in_repositories`.`repository`=%s' \ |