[Git][qa/jenkins.debian.net][master] reproducible Debian: move buster to archived suites
Holger Levsen (@holger)
gitlab at salsa.debian.org
Sat Nov 4 19:37:12 GMT 2023
Holger Levsen pushed to branch master at Debian QA / jenkins.debian.net
Commits:
0766c7a6 by Holger Levsen at 2023-11-04T20:36:45+01:00
reproducible Debian: move buster to archived suites
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
3 changed files:
- bin/reproducible.ini
- bin/reproducible_common.sh
- bin/reproducible_scheduler.py
Changes:
=====================================
bin/reproducible.ini
=====================================
@@ -24,8 +24,8 @@ buildinfo = buildinfo
[debian]
distro_root = debian
landing_page = reproducible.html
-suites = unstable trixie bookworm bullseye buster experimental
-archived_suites = stretch
+suites = unstable trixie bookworm bullseye experimental
+archived_suites = buster stretch
archs = amd64 arm64 armhf i386
defaultsuite = unstable
defaultarch = amd64
=====================================
bin/reproducible_common.sh
=====================================
@@ -37,12 +37,12 @@ CHPATH=/srv/reproducible-results/chdist
mkdir -p "$CHPATH"
# Debian suites being tested
-SUITES="buster bullseye bookworm trixie unstable experimental"
+SUITES="bullseye bookworm trixie unstable experimental"
TESTING_SUITE="trixie"
# released Debian suites (some still tested, some not)
RELEASED_SUITES="bookworm bullseye buster stretch"
# Debian suites not being tested anymore:
-ARCHIVED_SUITES="stretch"
+ARCHIVED_SUITES="buster stretch"
# Debian architectures being tested
ARCHS="amd64 arm64 armhf i386"
=====================================
bin/reproducible_scheduler.py
=====================================
@@ -74,7 +74,6 @@ MAXIMA = {'amd64': 2000, 'i386': 1600, 'arm64': 2000, 'armhf': 1800}
LIMITS = {
'untested': {
'amd64': {
- 'buster': {'*': 255},
'bullseye': {'*': 255},
'bookworm': {'*': 255},
'trixie': {'*': 255},
@@ -82,7 +81,6 @@ LIMITS = {
'experimental': {'*': 255},
},
'i386': {
- 'buster': {'*': 255},
'bullseye': {'*': 255},
'bookworm': {'*': 255},
'trixie': {'*': 255},
@@ -90,7 +88,6 @@ LIMITS = {
'experimental': {'*': 255},
},
'arm64': {
- 'buster': {'*': 255},
'bullseye': {'*': 255},
'bookworm': {'*': 255},
'trixie': {'*': 255},
@@ -98,7 +95,6 @@ LIMITS = {
'experimental': {'*': 255},
},
'armhf': {
- 'buster': {'*': 255},
'bullseye': {'*': 255},
'bookworm': {'*': 255},
'trixie': {'*': 255},
@@ -108,7 +104,6 @@ LIMITS = {
},
'new': {
'amd64': {
- 'buster': {1: (1000, 500), 2: (1500, 650), '*': 100},
'bullseye': {1: (1000, 500), 2: (1500, 650), '*': 150},
'bookworm': {1: (1000, 500), 2: (1500, 750), '*': 150},
'trixie': {1: (1000, 500), 2: (1500, 750), '*': 150},
@@ -116,7 +111,6 @@ LIMITS = {
'experimental': {1: (1000, 500), 2: (1500, 750), '*': 50},
},
'i386': {
- 'buster': {1: (800, 400), 2: (1300, 650), '*': 100},
'bullseye': {1: (900, 400), 2: (1300, 650), '*': 100},
'bookworm': {1: (900, 400), 2: (1300, 650), '*': 100},
'trixie': {1: (900, 400), 2: (1300, 650), '*': 100},
@@ -124,7 +118,6 @@ LIMITS = {
'experimental': {1: (800, 500), 2: (1300, 750), '*': 50},
},
'arm64': {
- 'buster': {1: (1000, 500), 2: (1500, 650), '*': 50},
'bullseye': {1: (1000, 500), 2: (1500, 650), '*': 50},
'bookworm': {1: (1000, 500), 2: (1500, 750), '*': 150},
'trixie': {1: (1000, 500), 2: (1500, 750), '*': 150},
@@ -132,7 +125,6 @@ LIMITS = {
'experimental': {1: (1000, 500), 2: (1500, 750), '*': 25},
},
'armhf': {
- 'buster': {1: (900, 300), 2: (1400, 450), '*': 50},
'bullseye': {1: (900, 300), 2: (1400, 450), '*': 75},
'bookworm': {1: (900, 400), 2: (1400, 600), '*': 75},
'trixie': {1: (900, 400), 2: (1400, 600), '*': 75},
@@ -142,7 +134,6 @@ LIMITS = {
},
'ftbfs': {
'amd64': {
- 'buster': {1: (1000, 0), 2: (1500, 0), '*': 0},
'bullseye': {1: (1000, 0), 2: (1500, 0), '*': 5},
'bookworm': {1: (1000, 0), 2: (1500, 0), '*': 5},
'trixie': {1: (1000, 40), 2: (1500, 20), '*': 5},
@@ -150,7 +141,6 @@ LIMITS = {
'experimental': {1: (1000, 40), 2: (1500, 20), '*': 2},
},
'i386': {
- 'buster': {1: (1000, 0), 2: (1300, 0), '*': 0},
'bullseye': {1: (1000, 0), 2: (1300, 0), '*': 5},
'bookworm': {1: (1000, 0), 2: (1300, 0), '*': 5},
'trixie': {1: (1000, 20), 2: (1300, 10), '*': 5},
@@ -158,7 +148,6 @@ LIMITS = {
'experimental': {1: (1000, 40), 2: (1300, 20), '*': 2},
},
'arm64': {
- 'buster': {1: (1000, 0), 2: (1500, 0), '*': 0},
'bullseye': {1: (1000, 0), 2: (1500, 0), '*': 5},
'bookworm': {1: (1000, 0), 2: (1500, 0), '*': 5},
'trixie': {1: (1000, 40), 2: (1500, 20), '*': 5},
@@ -166,7 +155,6 @@ LIMITS = {
'experimental': {1: (1000, 40), 2: (1500, 20), '*': 2},
},
'armhf': {
- 'buster': {1: (900, 0), 2: (1400, 0), '*': 0},
'bullseye': {1: (900, 0), 2: (1400, 0), '*': 5},
'bookworm': {1: (900, 0), 2: (1400, 0), '*': 5},
'trixie': {1: (900, 20), 2: (1400, 10), '*': 5},
@@ -176,7 +164,6 @@ LIMITS = {
},
'depwait': {
'amd64': {
- 'buster': {1: (1000, 0), 2: (1500, 0), '*': 0},
'bullseye': {1: (1000, 200), 2: (1500, 100), '*': 50},
'bookworm': {1: (1000, 200), 2: (1500, 100), '*': 50},
'trixie': {1: (1000, 400), 2: (1500, 200), '*': 50},
@@ -184,7 +171,6 @@ LIMITS = {
'experimental': {1: (1000, 400), 2: (1500, 200), '*': 20},
},
'i386': {
- 'buster': {1: (800, 0), 2: (1300, 0), '*': 0},
'bullseye': {1: (800, 200), 2: (1300, 100), '*': 50},
'bookworm': {1: (800, 200), 2: (1300, 100), '*': 50},
'trixie': {1: (800, 400), 2: (1300, 200), '*': 50},
@@ -192,7 +178,6 @@ LIMITS = {
'experimental': {1: (800, 400), 2: (1300, 200), '*': 20},
},
'arm64': {
- 'buster': {1: (1000, 0), 2: (1500, 0), '*': 0},
'bullseye': {1: (1000, 200), 2: (1500, 100), '*': 50},
'bookworm': {1: (1000, 200), 2: (1500, 100), '*': 50},
'trixie': {1: (1000, 400), 2: (1500, 200), '*': 50},
@@ -200,7 +185,6 @@ LIMITS = {
'experimental': {1: (1000, 400), 2: (1500, 200), '*': 20},
},
'armhf': {
- 'buster': {1: (900, 0), 2: (1400, 0), '*': 0},
'bullseye': {1: (900, 100), 2: (1400, 50), '*': 50},
'bookworm': {1: (900, 100), 2: (1400, 50), '*': 50},
'trixe': {1: (900, 200), 2: (1400, 100), '*': 50},
@@ -210,7 +194,6 @@ LIMITS = {
},
'old': {
'amd64': {
- 'buster': {1: (1000, 0), 2: (1500, 0), '*': 0},
'bullseye': {1: (1000, 0), 2: (1500, 0), '*': 0},
'bookworm': {1: (1000, 0), 2: (1500, 0), '*': 0},
'trixie': {1: (1000, 1200), 2: (1500, 1000), '*': 0},
@@ -218,7 +201,6 @@ LIMITS = {
'experimental': {1: (1000, 70), 2: (1500, 50), '*': 0},
},
'i386': {
- 'buster': {1: (800, 0), 2: (1300, 0), '*': 0},
'bullseye': {1: (800, 0), 2: (1300, 0), '*': 0},
'bookworm': {1: (1000, 0), 2: (1500, 0), '*': 0},
'trixie': {1: (1000, 1000), 2: (1500, 850), '*': 0},
@@ -226,7 +208,6 @@ LIMITS = {
'experimental': {1: (800, 70), 2: (1300, 50), '*': 0},
},
'arm64': {
- 'buster': {1: (1000, 0), 2: (1500, 0), '*': 0},
'bullseye': {1: (1000, 0), 2: (1500, 0), '*': 0},
'bookworm': {1: (1000, 0), 2: (1500, 0), '*': 0},
'trixie': {1: (1000, 1200), 2: (1500, 1000), '*': 0},
@@ -234,7 +215,6 @@ LIMITS = {
'experimental': {1: (1000, 70), 2: (1500, 50), '*': 0},
},
'armhf': {
- 'buster': {1: (900, 0), 2: (1400, 0), '*': 0},
'bullseye': {1: (900, 0), 2: (1400, 0), '*': 0},
'bookworm': {1: (1000, 0), 2: (1500, 0), '*': 0},
'trixie': {1: (1000, 900), 2: (1500, 600), '*': 0},
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/commit/0766c7a6daafa14eb3fd25ea94e7213eb1c234cc
--
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/commit/0766c7a6daafa14eb3fd25ea94e7213eb1c234cc
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/qa-jenkins-scm/attachments/20231104/19f64320/attachment-0001.htm>
More information about the Qa-jenkins-scm
mailing list