[Qa-jenkins-scm] [Git][qa/jenkins.debian.net][master] 5 commits: reproducible alpine: replace two old archlinux strings
Holger Levsen
gitlab at salsa.debian.org
Wed Dec 4 19:46:14 GMT 2019
Holger Levsen pushed to branch master at Debian QA / jenkins.debian.net
Commits:
4fe30bba by kpcyrd at 2019-12-04T19:45:43Z
reproducible alpine: replace two old archlinux strings
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
35a3dd33 by kpcyrd at 2019-12-04T19:45:43Z
reproducible alpine: bump the number of alpine workers
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
3b43b4f9 by kpcyrd at 2019-12-04T19:45:43Z
reproducible alpine: ensure ripgrep is installed
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
9eeb3a5a by kpcyrd at 2019-12-04T19:45:43Z
reproducible alpine: fix graph generation
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
4af96f16 by Holger Levsen at 2019-12-04T19:45:43Z
reproducible nodes overview: indicate where alpine is build
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
4 changed files:
- bin/reproducible_html_alpine.sh
- bin/reproducible_html_nodes_info.sh
- job-cfg/reproducible.yaml
- update_jdn.sh
Changes:
=====================================
bin/reproducible_html_alpine.sh
=====================================
@@ -57,7 +57,7 @@ repostats(){
SUITE="alpine_$REPOSITORY"
TOTAL=$(query_db "SELECT count(*) FROM sources AS s WHERE s.distribution=$DISTROID AND s.architecture='x86_64' AND s.suite='$SUITE';")
TESTED=$(query_db "SELECT count(*) FROM sources AS s JOIN results AS r ON s.id=r.package_id WHERE s.distribution=$DISTROID AND s.architecture='x86_64' AND s.suite='$SUITE';")
- NR_GOOD=$(query_db "SELECT count(*) FROM sources AS s JOIN results AS r ON s.id=r.package_id WHERE s.distribution=$DISTROID AND s.architecture='x86_64' AND s.suite='$SUITE' AND r.status='GOOD';")
+ NR_GOOD=$(query_db "SELECT count(*) FROM sources AS s JOIN results AS r ON s.id=r.package_id WHERE s.distribution=$DISTROID AND s.architecture='x86_64' AND s.suite='$SUITE' AND r.status='reproducible';")
NR_FTBR=$(query_db "SELECT count(*) FROM sources AS s JOIN results AS r ON s.id=r.package_id WHERE s.distribution=$DISTROID AND s.architecture='x86_64' AND s.suite='$SUITE' AND r.status LIKE 'FTBR_%';")
NR_FTBFS=$(query_db "SELECT count(*) FROM sources AS s JOIN results AS r ON s.id=r.package_id WHERE s.distribution=$DISTROID AND s.architecture='x86_64' AND s.suite='$SUITE' AND r.status LIKE 'FTBFS_%';")
NR_DEPWAIT=$(query_db "SELECT count(*) FROM sources AS s JOIN results AS r ON s.id=r.package_id WHERE s.distribution=$DISTROID AND s.architecture='x86_64' AND s.suite='$SUITE' AND r.status LIKE 'DEPWAIT_%';")
@@ -371,7 +371,7 @@ recent_builds_page(){
WHERE s.distribution=$DISTROID
AND s.architecture='x86_64'
AND r.build_date > '$MAXDATE'")
- write_page "<h2>$RECENT builds of Archlinux packages in the last 24h</h2>"
+ write_page "<h2>$RECENT builds of alpine packages in the last 24h</h2>"
include_pkg_table_header_in_page
STATE_PKGS=$(query_db "SELECT s.name, s.suite FROM sources AS s
JOIN results AS r
@@ -402,7 +402,7 @@ currently_scheduled_page(){
WHERE s.distribution=$DISTROID
AND s.architecture='x86_64'
AND sch.date_build_started IS NULL")
- write_page "<h2>Currently $TESTED scheduled builds of Archlinux packages</h2>"
+ write_page "<h2>Currently $TESTED scheduled builds of alpine packages</h2>"
write_page " <table><tr><th>source package</th><th>repository</th><th>version</th><th>scheduled</th></tr>"
STATE_PKGS=$(query_db "SELECT s.name, s.suite, s.version, sch.date_scheduled
FROM sources AS s
=====================================
bin/reproducible_html_nodes_info.sh
=====================================
@@ -22,8 +22,8 @@ explain_nodes() {
profitbricks10) write_page "<br /><small>(jenkins.d.n chroot-installation jobs and http-proxy)</small>" ;;
osuosl167) write_page "<br /><small>(http-proxy for osuosl nodes)</small>" ;;
osuosl168) write_page "<br /><small>(r-b F-Droid builds)</small>" ;;
- osuosl169) write_page "<br /><small>(r-b Archlinux builds)</small>" ;;
- osuosl170) write_page "<br /><small>(r-b Archlinux builds)</small>" ;;
+ osuosl169) write_page "<br /><small>(r-b Alpine, Archlinux builds)</small>" ;;
+ osuosl170) write_page "<br /><small>(r-b Alpine, Archlinux builds)</small>" ;;
osuosl171) write_page "<br /><small>(r-b OpenWrt, NetBSD, Coreboot builds)</small>" ;;
osuosl172) write_page "<br /><small>(r-b OpenWrt, Coreboot builds)</small>" ;;
osuosl173) write_page "<br /><small>(r-b Debian / Archlinux rebuilder)</small>" ;;
=====================================
job-cfg/reproducible.yaml
=====================================
@@ -894,6 +894,14 @@
my_num: 1
op_descname: 'an alpine'
my_disabled: false
+ - 'alpine':
+ my_num: 2
+ op_descname: 'an alpine'
+ my_disabled: false
+ - 'alpine':
+ my_num: 3
+ op_descname: 'an alpine'
+ my_disabled: false
- 'archlinux':
my_num: 1
op_descname: 'an Arch Linux'
=====================================
update_jdn.sh
=====================================
@@ -282,6 +282,7 @@ if [ -f /etc/debian_version ] ; then
psmisc
python3-psycopg2
python3-yaml
+ ripgrep
schroot
screen
slay
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/compare/82c7e1b8f56ce5e2c4de8584f4c5d03b0aa3c871...4af96f16dc090572776945b92af5e704dc14137b
--
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/compare/82c7e1b8f56ce5e2c4de8584f4c5d03b0aa3c871...4af96f16dc090572776945b92af5e704dc14137b
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/20191204/1da100f8/attachment-0001.html>
More information about the Qa-jenkins-scm
mailing list