diff options
author | Helmut Grohne <helmut@subdivi.de> | 2014-04-17 19:02:12 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2014-04-17 19:02:12 +0200 |
commit | 080e4dffd805163251e40842fa6a322b97cb72fe (patch) | |
tree | a78be6c9d5d8444bae5d916cf48f2656856d5c7d | |
parent | 58bb23907d42ff64c4d3b344f4b94a5c4128ce2a (diff) | |
download | jenkins.debian.net-080e4dffd805163251e40842fa6a322b97cb72fe.tar.xz |
rebootstrap: add multilib variant for x32
It is not clear whether multilib makes things easier or more difficult.
When in doubt, try both. Also Matthias Klose asked for multilib
bootstraps.
-rw-r--r-- | job-cfg/rebootstrap.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/job-cfg/rebootstrap.yaml b/job-cfg/rebootstrap.yaml index 5684f657..de476b0f 100644 --- a/job-cfg/rebootstrap.yaml +++ b/job-cfg/rebootstrap.yaml @@ -79,6 +79,14 @@ defaults: rebootstrap name: '{name}_x32_gcc49' +- job-template: + defaults: rebootstrap + name: '{name}_x32_multilib' + +- job-template: + defaults: rebootstrap + name: '{name}_x32_gcc49_multilib' + - project: name: rebootstrap @@ -116,3 +124,11 @@ my_arch: 'x32' my_params: 'GCC_VER=4.9' my_description: 'Verify bootstrappability of Debian using gcc-4.9 for x32' + - '{name}_x32_multilib': + my_arch: 'x32' + my_params: 'ENABLE_MULTILIB=yes' + my_description: 'Verify bootstrappability of Debian with multilib for x32' + - '{name}_x32_gcc49_multilib': + my_arch: 'x32' + my_params: 'GCC_VER=4.9 ENABLE_MULTILIB=yes' + my_description: 'Verify bootstrappability of Debian using gcc-4.9 with multilib for x32' |