Skip to content
Commits on Source (3)
#!/bin/bash
# Copyright © 2017-2018 Holger Levsen (holger@layer-acht.org)
# Copyright © 2017-2019 Holger Levsen (holger@layer-acht.org)
# released under the GPLv=2
set -e
......@@ -55,7 +55,7 @@ elif [ ! -z "$(ps fax|grep -v grep|grep 'reproducible_worker $WORKER.sh ')" ] ;
zcat $FILE.gz
fi
#
# FIXME: we should really just convert 'latest' into a number here and use the tail below…
# maybe we should just convert 'latest' into a number here and use the tail below…
#
elif [ "$BUILD" = "latest" ] ; then
if [ -f $FILE.gz ] ; then
......
#!/bin/bash
# Copyright 2012-2018 Holger Levsen <holger@layer-acht.org>
# Copyright 2012-2019 Holger Levsen <holger@layer-acht.org>
# 2016 Phil Hands <phil@hands.com>
# released under the GPLv=2
......@@ -85,7 +85,7 @@ preserve_artifacts() {
ls -ltrc $ISO_DIR
if [ "$HOSTNAME" = "jenkins" ] ; then
# FIXME this rsync should probably be in a separate job that the one on pb10 could then depend on -- otherwise race conditions seem to lurk
# this rsync should probably be in a separate job that the one on pb10 could then depend on -- otherwise race conditions seem to lurk
echo "and rsync them to the target node ($ISO_TEST_HOST):"
ssh -o 'Batchmode = yes' $ISO_TEST_HOST mkdir -p $ISO_DIR
rsync -v -e "ssh -o 'Batchmode = yes'" -r $ISO_DIR/ $ISO_TEST_HOST:$ISO_DIR/
......
......@@ -315,7 +315,6 @@ def gen_history_page(package, arch=None):
for r in package.history:
# make a copy, since we modify in place
record = dict(r)
# FIXME - hacky, should be rethought one day
# skip records for suites that are unknown to us (i.e. other distro)
if record['suite'] not in SUITES:
continue
......