diff options
author | Philip Hands <phil@hands.com> | 2016-05-28 00:57:30 +0200 |
---|---|---|
committer | Philip Hands <phil@hands.com> | 2016-05-29 19:06:07 +0200 |
commit | 6f78b2b511b4202b4cfa57df5a76a4ba9cd8fdbc (patch) | |
tree | 6edf0f1534d8d20016dbf0932a92008d48f959b7 /cucumber/features | |
parent | d7ae5ed3b732e36f5f3a18985ec60f668c0e2679 (diff) | |
download | jenkins.debian.net-6f78b2b511b4202b4cfa57df5a76a4ba9cd8fdbc.tar.xz |
lvc: add checkpoints for more desktop installs
Diffstat (limited to 'cucumber/features')
-rw-r--r-- | cucumber/features/step_definitions/snapshots.rb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/cucumber/features/step_definitions/snapshots.rb b/cucumber/features/step_definitions/snapshots.rb index f95086e6..352a4cc5 100644 --- a/cucumber/features/step_definitions/snapshots.rb +++ b/cucumber/features/step_definitions/snapshots.rb @@ -151,6 +151,35 @@ def checkpoints 'the computer is set to boot from ide drive "'+JOB_NAME+'"', ], }, + + 'debian-gui-lxde-install' => { + :description => "I install a LXDE Desktop Debian system, in gui mode", + :parent_checkpoint => 'boot-g-i-to-tasksel', + :steps => [ + 'in gui mode I select the LXDE Desktop task', + 'in gui mode I wait while the bulk of the packages are installed', + 'in gui mode I install GRUB', + 'in gui mode I allow reboot after the install is complete', + 'I wait for the reboot', + 'I power off the computer', + 'the computer is set to boot from ide drive "'+JOB_NAME+'"', + ], + }, + + 'debian-gui-kde-install' => { + :description => "I install a KDE Desktop Debian system, in gui mode", + :parent_checkpoint => 'boot-g-i-to-tasksel', + :steps => [ + 'in gui mode I select the KDE Desktop task', + 'in gui mode I wait while the bulk of the packages are installed', + 'in gui mode I install GRUB', + 'in gui mode I allow reboot after the install is complete', + 'I wait for the reboot', + 'I power off the computer', + 'the computer is set to boot from ide drive "'+JOB_NAME+'"', + ], + }, + } end |