~pwlars/ubuntu-test-cases/krillin-recovery

« back to all changes in this revision

Viewing changes to jenkins/templates/touch-install-and-boot.xml.jinja2

  • Committer: Andy Doan
  • Date: 2013-10-21 01:55:41 UTC
  • mto: This revision was merged to the branch mainline in revision 74.
  • Revision ID: andy.doan@canonical.com-20131021015541-p96i911kqdm28kmo
oops - typo when converting to apconfig.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "touch-base.xml.jinja2" %}
 
2
<?xml version='1.0' encoding='UTF-8'?>
 
3
{% block triggers %}
 
4
  <triggers class="vector"/>
 
5
{% endblock %}
 
6
{% block timeout %}
 
7
  <timeoutMinutes>30</timeoutMinutes>
 
8
{% endblock timeout %}
 
9
 
 
10
{% block shellcmds %}
 
11
      <command>set -e
 
12
apt-cache policy phablet-tools
 
13
rm -rf *
 
14
mkdir clientlogs
 
15
 
 
16
{% include "touch-setup.xml.jinja2" %}
 
17
 
 
18
#Wait for images to actually show up on cdimage
 
19
sleep {{wait}}
 
20
{{image_opt}}
 
21
${BZRDIR}/scripts/provision.sh -s $ANDROID_SERIAL -i {{imagetype}} -w
 
22
 
 
23
${BZRDIR}/scripts/jenkins.sh -s $ANDROID_SERIAL -a install-and-boot
 
24
      </command>
 
25
{% endblock %}
 
26
 
 
27
{% block artifacts %}
 
28
      <artifacts>clientlogs/*</artifacts>
 
29
{% endblock %}