[Qa-jenkins-scm] [Git][qa/jenkins.debian.net][master] 2 commits: update README for bullseye release
Holger Levsen (@holger)
gitlab at salsa.debian.org
Tue Aug 17 17:03:46 BST 2021
Holger Levsen pushed to branch master at Debian QA / jenkins.debian.net
Commits:
7eb576fc by Holger Levsen at 2021-08-17T18:00:30+02:00
update README for bullseye release
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
a16eafd5 by Holger Levsen at 2021-08-17T18:03:36+02:00
chroot install test script: support bookworm
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
2 changed files:
- README
- bin/chroot-installation.sh
Changes:
=====================================
README
=====================================
@@ -95,7 +95,7 @@ Installation tests inside chroot environments.
=== qa.debian.org related jobs
* There are jobs for lintian and for piuparts:
-** they simply run a build and/or the tests of the master branch of their git repository on every commit against sid. If that succeeds, the same source will be built on bullseye, then on buster and - in the lintian case only - also for stretch-backports.
+** they simply run a build and/or the tests of the master branch of their git repository on every commit against sid. If that succeeds, the same source will be built on testing and stable.
* There are also jobs related to link:https://udd.debian.org[UDD]:
** they check for multiarch version screws in various suites or issues with orphaned packages without the correct the relevant bug.
*** the UDD schema is available at https://udd.debian.org/schema/udd.html
@@ -118,7 +118,7 @@ Installation tests inside chroot environments.
* The (current) purpose of https://tests.reproducible-builds.org is to show the potential of reproducible builds for Debian - and six other projects currently. This is research, showing what could (and should) be done... check https://wiki.debian.org/ReproducibleBuilds for the real status of the project for Debian!
-* For Debian, five suites, 'stretch', 'buster', 'bullseye', 'unstable' and 'experimental', are tested on four architectures: 'amd64', 'i386', 'arm64' and 'armhf'. The tests are done using 'pbuilder' through several concurrent workers: 40 for 'amd64', 24 for 'i386', 32 for 'arm64' and 45 for 'armhf', which are each constantly testing packages and saving the results of these tests. There's a single link:https://salsa.debian.org/qa/jenkins.debian.net/blob/master/bin/reproducible_build_service.sh[systemd service] starting all of these link:https://salsa.debian.org/qa/jenkins.debian.net/blob/master/bin/reproducible_worker.sh[workers] which in turn launch the actual link:https://salsa.debian.org/qa/jenkins.debian.net/blob/master/bin/reproducible_build.sh[build script]. (So the actual builds and tests are happening outside the jenkins service.)
+* For Debian, six suites, 'stretch', 'buster', 'bullseye', 'bookworm', 'unstable' and 'experimental', are tested on four architectures: 'amd64', 'i386', 'arm64' and 'armhf'. The tests are done using 'pbuilder' through several concurrent workers: 40 for 'amd64', 24 for 'i386', 32 for 'arm64' and 45 for 'armhf', which are each constantly testing packages and saving the results of these tests. There's a single link:https://salsa.debian.org/qa/jenkins.debian.net/blob/master/bin/reproducible_build_service.sh[systemd service] starting all of these link:https://salsa.debian.org/qa/jenkins.debian.net/blob/master/bin/reproducible_worker.sh[workers] which in turn launch the actual link:https://salsa.debian.org/qa/jenkins.debian.net/blob/master/bin/reproducible_build.sh[build script]. (So the actual builds and tests are happening outside the jenkins service.)
** To shutdown all the workers use: `sudo systemctl stop reproducible_build at startup.service ; /srv/jenkins/bin/reproducible_cleanup_nodes.sh`
** To start all the workers use: `sudo systemctl start reproducible_build at startup.service`
@@ -135,7 +135,7 @@ Installation tests inside chroot environments.
* We would love to have more or more powerful ARM hardware in the future, if you can help, please talk to us!
* Packages to be build are scheduled in the database via a scheduler job, which runs every hour and if the queue is below a certain threshold schedules four types of packages:
-** new untested packages (either uploaded to 'unstable' or 'experimental' or migrated to 'bullseye', or security updates to 'buster' or 'stretch'),
+** new untested packages (either uploaded to 'unstable' or 'experimental' or migrated to 'bookworm', or security updates to 'bullseye', 'buster' or 'stretch'),
** new versions of existing packages, which were already tested - these are always scheduled, no matter how full the queue is
** old versions, already tested (at least two weeks ago)
** and also some old versions which failed to build (at least ten days ago), if no bug has been filed.
=====================================
bin/chroot-installation.sh
=====================================
@@ -1,7 +1,7 @@
#!/bin/bash
# vim: set noexpandtab:
-# Copyright 2012-2020 Holger Levsen <holger at layer-acht.org>
+# Copyright 2012-2021 Holger Levsen <holger at layer-acht.org>
# 2018 Mattia Rizzolo <mattia at debian.org>
# released under the GPLv2
@@ -206,11 +206,11 @@ trap cleanup_all INT TERM EXIT
LXQT="lxqt"
case $1 in
- stretch) DISTRO="stretch"
- SPECIFIC="libreoffice virt-manager mplayer chromium"
- FIREFOX="iceweasel"
- ;;
- buster|bullseye|sid) DISTRO="$1"
+ #stretch) DISTRO="stretch"
+ # SPECIFIC="libreoffice virt-manager mplayer chromium"
+ # FIREFOX="iceweasel"
+ # ;;
+ buster|bullseye|bookworm|sid) DISTRO="$1"
SPECIFIC="libreoffice virt-manager mplayer chromium"
if [ "$DISTRO" = "sid" ] ; then
FIREFOX="firefox firefox-esr"
@@ -254,8 +254,6 @@ if [ "$2" != "" ] ; then
;;
debconf-video) install_packages ack-grep htop iftop iotop moreutils tmux vnstat icecast2 mplayer vlc cu voctomix voctomix-outcasts hdmi2usb-mode-switch hdmi2usb-udev
;;
- education-lang-*) install_packages "Debian Edu task" $2 # only in stretch, removed for buster
- ;;
education*) install_packages "Debian Edu task" $2
;;
parl-desktop*) install_packages "Debian Parl package" $2
@@ -270,7 +268,7 @@ fi
if [ "$3" != "" ] ; then
case $3 in
- stretch|buster|bullseye|sid) upgrade2 $3;;
+ buster|bullseye|bookworm|sid) upgrade2 $3;;
*) echo "unsupported distro." ; exit 1 ;;
esac
fi
@@ -463,6 +461,7 @@ if [ "$DISTRO" = "sid" ] ; then
fi
if ! cat /etc/debian_version | grep -q ^10 ; then
echo "Warning: It seems 'bullseye' has been released, please revisit the list of transitional packages to ignore…"
+ # ack, this needs to be done still.
fi
fi
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/compare/2c7f450ed5c2ec7c26ef577ccde0539af5f35ff1...a16eafd5db9a4c27b0461f3f86aa50b6931d2d2b
--
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/compare/2c7f450ed5c2ec7c26ef577ccde0539af5f35ff1...a16eafd5db9a4c27b0461f3f86aa50b6931d2d2b
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/20210817/5ddec0a5/attachment-0001.htm>
More information about the Qa-jenkins-scm
mailing list