diff options
-rw-r--r-- | job-cfg/rebootstrap.yaml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/job-cfg/rebootstrap.yaml b/job-cfg/rebootstrap.yaml index 136d486f..fcb2c72d 100644 --- a/job-cfg/rebootstrap.yaml +++ b/job-cfg/rebootstrap.yaml @@ -61,12 +61,24 @@ - job-template: defaults: rebootstrap + name: '{name}_arm64_gcc49_multilib' + +- job-template: + defaults: rebootstrap name: '{name}_m68k' - job-template: defaults: rebootstrap + name: '{name}_m68k_gcc49' + +- job-template: + defaults: rebootstrap name: '{name}_x32' +- job-template: + defaults: rebootstrap + name: '{name}_x32_gcc49' + - project: name: rebootstrap @@ -84,11 +96,23 @@ my_arch: 'arm64' my_params: 'ENABLE_MULTILIB=yes' my_description: 'Verify bootstrappability of Debian with multilib for arm64' + - '{name}_arm64_gcc49_multilib': + my_arch: 'arm64' + my_params: 'GCC_VER=4.9 ENABLE_MULTILIB=yes' + my_description: 'Verify bootstrappability of Debian using gcc-4.9 with multilib for arm64' - '{name}_m68k': my_arch: 'm68k' my_params: '' my_description: 'Verify bootstrappability of Debian for m68k' + - '{name}_m68k_gcc49': + my_arch: 'm68k' + my_params: 'GCC_VER=4.9' + my_description: 'Verify bootstrappability of Debian using gcc-4.9 for m68k' - '{name}_x32': my_arch: 'x32' my_params: '' my_description: 'Verify bootstrappability of Debian for x32' + - '{name}_x32_gcc49': + my_arch: 'x32' + my_params: 'GCC_VER=4.9' + my_description: 'Verify bootstrappability of Debian using gcc-4.9 for x32' |