summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-11-24 00:19:24 +0100
committerHolger Levsen <holger@layer-acht.org>2014-11-24 00:19:24 +0100
commit7894b2ed0adc2e272ccf440b9b01a20eeb068371 (patch)
tree4afd8907f71c7fd22968aae7c6840dd0b94f9b4a
parent3b2227dddaf8af2da6c955d23fbadaae5562bd6d (diff)
downloadjenkins.debian.net-7894b2ed0adc2e272ccf440b9b01a20eeb068371.tar.xz
g-i: add four new jobs: (sid_daily|jessie)_gnome_(brltty|speakup)
-rw-r--r--bin/g-i-installation.sh22
l---------d-i-preseed-cfgs/debian_sid_daily_gnome_brltty_preseed.cfg1
l---------d-i-preseed-cfgs/debian_sid_daily_gnome_speakup_preseed.cfg1
-rw-r--r--job-cfg/g-i-installation.yaml40
4 files changed, 64 insertions, 0 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh
index 74355978..64cb4ade 100644
--- a/bin/g-i-installation.sh
+++ b/bin/g-i-installation.sh
@@ -301,6 +301,14 @@ bootstrap_system() {
debian-edu_*)
EXTRA_APPEND="$EXTRA_APPEND DEBCONF_DEBUG=developer"
;;
+ *_brltty)
+ EXTRA_APPEND="$EXTRA_APPEND brltty=tt,ttyS0,en"
+ ;;
+ *_speakup)
+ EXTRA_APPEND="$EXTRA_APPEND speakup.synth=soft"
+ ;;
+ *)
+ ;;
esac
case $NAME in
debian-edu_*)
@@ -1157,6 +1165,20 @@ save_logs() {
#
sudo chroot $SYSTEM_MNT dpkg -l > $RESULTS/dpkg-l || ( echo "Warning: cannot run dpkg inside the installed system, did the installation finish correctly?" ; export FAILURE=true )
#
+ # check for must installed packages
+ #
+ case $NAME in
+ *_brltty)
+ grep brltty $RESULTS/dpkg-l || echo "Warning: package brltty not installed."
+ ;;
+ *_speakup)
+ grep epeakup RESULTS/dpkg-l || echo "Warning: package espeakup not installed."
+ ;;
+ *)
+ ;;
+ esac
+
+ #
# only on combi-servers and ltsp-servers:
# mount /opt
# copy LTSP logs and package list
diff --git a/d-i-preseed-cfgs/debian_sid_daily_gnome_brltty_preseed.cfg b/d-i-preseed-cfgs/debian_sid_daily_gnome_brltty_preseed.cfg
new file mode 120000
index 00000000..75ef167c
--- /dev/null
+++ b/d-i-preseed-cfgs/debian_sid_daily_gnome_brltty_preseed.cfg
@@ -0,0 +1 @@
+debian_sid_daily_gnome_preseed.cfg \ No newline at end of file
diff --git a/d-i-preseed-cfgs/debian_sid_daily_gnome_speakup_preseed.cfg b/d-i-preseed-cfgs/debian_sid_daily_gnome_speakup_preseed.cfg
new file mode 120000
index 00000000..75ef167c
--- /dev/null
+++ b/d-i-preseed-cfgs/debian_sid_daily_gnome_speakup_preseed.cfg
@@ -0,0 +1 @@
+debian_sid_daily_gnome_preseed.cfg \ No newline at end of file
diff --git a/job-cfg/g-i-installation.yaml b/job-cfg/g-i-installation.yaml
index 196e9b20..3b5761ef 100644
--- a/job-cfg/g-i-installation.yaml
+++ b/job-cfg/g-i-installation.yaml
@@ -143,6 +143,14 @@
- job-template:
defaults: g-i-installation
+ name: '{name}_debian_jessie_gnome_brltty'
+
+- job-template:
+ defaults: g-i-installation
+ name: '{name}_debian_jessie_gnome_speakup'
+
+- job-template:
+ defaults: g-i-installation
name: '{name}_debian_wheezy_xfce'
- job-template:
@@ -167,6 +175,14 @@
- job-template:
defaults: g-i-installation
+ name: '{name}_debian_sid_daily_gnome_brltty'
+
+- job-template:
+ defaults: g-i-installation
+ name: '{name}_debian_sid_daily_gnome_speakup'
+
+- job-template:
+ defaults: g-i-installation
name: '{name}_debian_sid_daily_xfce'
- job-template:
@@ -397,12 +413,36 @@
my_description: 'Do a fully automated installation of Debian GNOME desktop - via d-i preseeding (with <a href="https://jenkins.debian.net/d-i-preseed-cfgs/debian_jessie_gnome_preseed.cfg">this preseed.cfg</a>) using netboot gtk.'
my_timed: '42 19 */2 * *'
my_recipients: 'holger@layer-acht.org'
+ - '{name}_debian_jessie_gnome_brltty':
+ my_title: 'Debian (jessie) GNOME desktop install with braille display support'
+ my_shell: '/srv/jenkins/bin/g-i-installation.sh 10 http://d-i.debian.org/daily-images/amd64/daily/netboot/gtk/debian-installer/amd64/'
+ my_description: 'Do a fully automated installation of Debian GNOME desktop with braille display support - via d-i preseeding (with <a href="https://jenkins.debian.net/d-i-preseed-cfgs/debian_jessie_gnome_preseed.cfg">this preseed.cfg</a>) using netboot gtk.'
+ my_timed: '43 19 */2 * *' # FIXME: trigger after _gnome
+ my_recipients: 'holger@layer-acht.org debian-accessibility@lists.debian.org'
+ - '{name}_debian_jessie_gnome_speakup':
+ my_title: 'Debian (jessie) GNOME desktop install with Speakup support'
+ my_shell: '/srv/jenkins/bin/g-i-installation.sh 10 http://d-i.debian.org/daily-images/amd64/daily/netboot/gtk/debian-installer/amd64/'
+ my_description: 'Do a fully automated installation of Debian GNOME desktop with Speakup support - via d-i preseeding (with <a href="https://jenkins.debian.net/d-i-preseed-cfgs/debian_jessie_gnome_preseed.cfg">this preseed.cfg</a>) using netboot gtk.'
+ my_timed: '43 19 */2 * *' # FIXME: trigger after _gnome
+ my_recipients: 'holger@layer-acht.org debian-accessibility@lists.debian.org'
- '{name}_debian_sid_daily_gnome':
my_title: 'Debian (sid daily build CD) GNOME desktop install'
my_shell: '/srv/jenkins/bin/g-i-installation.sh 10 http://cdimage.debian.org/cdimage/daily-builds/sid_d-i/arch-latest/amd64/iso-cd/debian-testing-amd64-netinst.iso'
my_description: 'Do a fully automated installation of Debian GNOME desktop - via d-i preseeding (with <a href="https://jenkins.debian.net/d-i-preseed-cfgs/debian_sid_daily_gnome_preseed.cfg">this preseed.cfg</a>) using netboot gtk.'
my_timed: '42 8 * * *'
my_recipients: 'holger@layer-acht.org'
+ - '{name}_debian_sid_daily_gnome_brltty':
+ my_title: 'Debian (sid daily build CD) GNOME desktop install with braille display support'
+ my_shell: '/srv/jenkins/bin/g-i-installation.sh 10 http://cdimage.debian.org/cdimage/daily-builds/sid_d-i/arch-latest/amd64/iso-cd/debian-testing-amd64-netinst.iso'
+ my_description: 'Do a fully automated installation of Debian GNOME desktop with braille display support - via d-i preseeding (with <a href="https://jenkins.debian.net/d-i-preseed-cfgs/debian_sid_daily_gnome_preseed.cfg">this preseed.cfg</a>) using netboot gtk.'
+ my_timed: '43 8 * * *' # FIXME: trigger after _gnome
+ my_recipients: 'holger@layer-acht.org debian-accessibility@lists.debian.org'
+ - '{name}_debian_sid_daily_gnome_speakup':
+ my_title: 'Debian (sid daily build CD) GNOME desktop install with Speakup support'
+ my_shell: '/srv/jenkins/bin/g-i-installation.sh 10 http://cdimage.debian.org/cdimage/daily-builds/sid_d-i/arch-latest/amd64/iso-cd/debian-testing-amd64-netinst.iso'
+ my_description: 'Do a fully automated installation of Debian GNOME desktop with Speakup support - via d-i preseeding (with <a href="https://jenkins.debian.net/d-i-preseed-cfgs/debian_sid_daily_gnome_preseed.cfg">this preseed.cfg</a>) using netboot gtk.'
+ my_timed: '43 8 * * *' # FIXME: trigger after _gnome
+ my_recipients: 'holger@layer-acht.org debian-accessibility@lists.debian.org'
- '{name}_debian_sid_daily_xfce':
my_title: 'Debian (sid daily build CD) Xfce desktop install'
my_shell: '/srv/jenkins/bin/g-i-installation.sh 10 http://cdimage.debian.org/cdimage/daily-builds/sid_d-i/arch-latest/amd64/iso-cd/debian-testing-amd64-netinst.iso'