From ffe13e991b855fea7cd11d13af5be815d1ed1391 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Mon, 9 Jun 2014 19:18:38 +0200 Subject: reduce numToKeep for rebootstrap to 20 With currently 76 jobs and each build taking up to 50MB, this should keep the permanent space usage of rebootstrap below 80GB. Lower if needed. --- job-cfg/rebootstrap.yaml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'job-cfg') diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py index 0d038426..7850f3ed 100755 --- a/job-cfg/rebootstrap.yaml.py +++ b/job-cfg/rebootstrap.yaml.py @@ -51,7 +51,7 @@ print(""" description: '{my_description}{do_not_edit}' logrotate: daysToKeep: 365 - numToKeep: 365 + numToKeep: 20 artifactDaysToKeep: -1 artifactNumToKeep: -1 scm: -- cgit v1.2.3-54-g00ecf From ef8f23cb0cdc96d4f7db4c0590aed776ddf8878a Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Mon, 9 Jun 2014 19:22:22 +0200 Subject: reduce unused architectures for rebootstrap The arm family really does not have any biarch packages (yet?). Demote to mono_architectures. This commit removes the following jobs: rebootstrap_arm_gcc48_nobiarch rebootstrap_arm_gcc49_nobiarch rebootstrap_arm64_gcc48_nobiarch rebootstrap_arm64_gcc49_nobiarch rebootstrap_armel_gcc48_nobiarch rebootstrap_armel_gcc49_nobiarch rebootstrap_armhf_gcc48_nobiarch rebootstrap_armhf_gcc49_nobiarch --- job-cfg/rebootstrap.yaml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'job-cfg') diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py index 7850f3ed..5a3af6ec 100755 --- a/job-cfg/rebootstrap.yaml.py +++ b/job-cfg/rebootstrap.yaml.py @@ -1,7 +1,6 @@ #!/usr/bin/python architectures = """ - arm arm64 armel armhf i386 hppa mips mipsel @@ -12,6 +11,7 @@ architectures = """ """.split() mono_architectures = """ + arm armel armhf arm64 alpha ia64 m68k -- cgit v1.2.3-54-g00ecf From f6dc9eaf0863c33d36efc5f3e217b6d319786278 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Sat, 14 Jun 2014 22:49:20 +0200 Subject: rebootstrap disable gcc-4.8 builds It is now impossible to co-install the build-dependencies of binutils and the gcc-4.8 libraries (needed for Multi-Arch version-lock). Thus all gcc-4.8 rebootstraps are doomed to fail. This commit removes the following jobs: rebootstrap_alpha_gcc48 rebootstrap_arm_gcc48 rebootstrap_arm64_gcc48 rebootstrap_armel_gcc48 rebootstrap_armhf_gcc48 rebootstrap_hppa_gcc48 rebootstrap_hppa_gcc48_nobiarch rebootstrap_i386_gcc48 rebootstrap_i386_gcc48_nobiarch rebootstrap_ia64_gcc48 rebootstrap_m68k_gcc48 rebootstrap_mips_gcc48 rebootstrap_mips_gcc48_nobiarch rebootstrap_mipsel_gcc48 rebootstrap_mipsel_gcc48_nobiarch rebootstrap_or1k_gcc48 rebootstrap_powerpc_gcc48 rebootstrap_powerpc_gcc48_nobiarch rebootstrap_powerpcspe_gcc48 rebootstrap_powerpcspe_gcc48_nobiarch rebootstrap_ppc64_gcc48 rebootstrap_ppc64_gcc48_nobiarch rebootstrap_ppc64el_gcc48 rebootstrap_ppc64el_gcc48_nobiarch rebootstrap_s390_gcc48 rebootstrap_s390_gcc48_nobiarch rebootstrap_s390x_gcc48 rebootstrap_s390x_gcc48_nobiarch rebootstrap_sparc_gcc48 rebootstrap_sparc_gcc48_nobiarch rebootstrap_sparc64_gcc48 rebootstrap_sparc64_gcc48_nobiarch rebootstrap_x32_gcc48 rebootstrap_x32_gcc48_nobiarch --- job-cfg/rebootstrap.yaml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'job-cfg') diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py index 5a3af6ec..b82e052c 100755 --- a/job-cfg/rebootstrap.yaml.py +++ b/job-cfg/rebootstrap.yaml.py @@ -20,7 +20,7 @@ mono_architectures = """ architectures += mono_architectures -gcc_versions = """4.8 4.9""".split() +gcc_versions = """4.9""".split() print(""" - defaults: -- cgit v1.2.3-54-g00ecf