diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-19 21:20:34 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-19 21:20:34 +0200 |
commit | ab40d33f3aec54e2c61d6fcecc42fa893c862acc (patch) | |
tree | deca74b1b8986d86bb2ecf97bcdf1a7f60ac1c87 | |
parent | 31b3cb28536189040948d40953a33ff5ff5e52e4 (diff) | |
download | jenkins.debian.net-ab40d33f3aec54e2c61d6fcecc42fa893c862acc.tar.xz |
reproducible: some more unstable/armhf special casing
-rwxr-xr-x | bin/reproducible_html_packages.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index adfa5c6b..b98053a9 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -219,6 +219,8 @@ def gen_packages_html(packages, no_clean=False): pkg = package.name for suite in SUITES: for arch in ARCHS: + if arch = 'armhf' and suite != 'unstable': + continue status = package.get_status(suite, arch) version = package.get_tested_version(suite, arch) build_date = package.get_build_date(suite, arch) @@ -272,6 +274,8 @@ def gen_all_rb_pkg_pages(no_clean=False): def purge_old_pages(): for suite in SUITES: for arch in ARCHS: + if arch = 'armhf' and suite != 'unstable': + continue log.info('Removing old pages from ' + suite + '/' + arch + '.') try: presents = sorted(os.listdir(RB_PKG_PATH + '/' + suite + '/' + |