blob: 1f43a16aee8ba68f1c1bd8c1c342dc9901961ab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# (c) 2016 Jan-Simon Moeller dl9pf(at)gmx.de
# License GPLv2
################################################################################
## Run SHORT CI test
################################################################################
set +x
echo "## ${MACHINE} ##"
cd $REPODIR
echo "## $TESTJOBFILE ##"
if [ -e $TESTJOBFILE ] ; then
echo "Using $TESTJOBFILE ..."
cp $TESTJOBFILE testjob.yaml
else
echo "!! NO TESTJOBFILE - trying to continue with a default !!"
fi
cat <<EOF > testjob.yaml
# Your first LAVA JOB definition for a $MACHINE board
device_type: @REPLACE_DEVICE_TYPE@
job_name: AGL-short-smoke
protocols:
lava-xnbd:
port: auto
timeouts:
job:
minutes: 30
action:
minutes: 15
connection:
minutes: 5
priority: medium
visibility: public
# ACTION_BLOCK
actions:
- deploy:
timeout:
minutes: 10
to: nbd
dtb:
url: '@REPLACE_URL_PREFIX@/@REPLACE_DTB@'
kernel:
url: '@REPLACE_URL_PREFIX@/@REPLACE_KERNEL@'
initrd:
url: '@REPLACE_URL_PREFIX@/@REPLACE_INITRAMFS@'
allow_modify: false
nbdroot:
url: '@REPLACE_URL_PREFIX@/@REPLACE_NBDROOT@'
compression: @REPLACE_NBDROOT_COMPRESSION@
os: debian
failure_retry: 2
# BOOT_BLOCK
- boot:
method: @REPLACE_BOOT_METHOD@
commands: nbd
type: @REPLACE_BOOT_TYPE@
prompts: ["root@@REPLACE_MACHINE@:~"]
auto_login:
login_prompt: "login:"
username: root
EOF
CHID=${GERRIT_CHANGE_NUMBER}/${GERRIT_PATCHSET_NUMBER}/${MACHINE}
# REPLACE_DEVICE_TYPE
sed -i -e "s#@REPLACE_DEVICE_TYPE@#${DEVICE_TYPE}#g" testjob.yaml
sed -i -e "s#@REPLACE_DTB@#${CHID}/${DEVICE_DTB}#g" testjob.yaml
sed -i -e "s#@REPLACE_KERNEL@#${CHID}/${DEVICE_KERNEL}#g" testjob.yaml
sed -i -e "s#@REPLACE_INITRAMFS@#${CHID}/${DEVICE_INITRAMFS}#g" testjob.yaml
sed -i -e "s#@REPLACE_NBDROOT@#${CHID}/${DEVICE_NBDROOT}#g" testjob.yaml
sed -i -e "s#@REPLACE_NBDROOT_COMPRESSION@#${DEVICE_NBDROOT_COMPRESSION}#g" testjob.yaml
sed -i -e "s#@REPLACE_BOOT_METHOD@#${DEVICE_BOOT_METHOD}#g" testjob.yaml
sed -i -e "s#@REPLACE_BOOT_TYPE@#${DEVICE_BOOT_TYPE}#g" testjob.yaml
sed -i -e "s#@REPLACE_MACHINE@#${DEVICE_NAME}#g" testjob.yaml
sed -i -e "s#@REPLACE_URL_PREFIX@#${DEVICE_URL_PREFIX}#g" testjob.yaml
cat testjob.yaml
lava-tool submit-job --block https://agl-jenkins-user@lava.automotivelinux.org testjob.yaml | tee .myjob
MYJOB=`cat .myjob | grep "submitted as job" | sed -e "s#submitted as job id: ##g"`
echo "#### JOBID: $MYJOB #####"
set -x
( lava-tool job-status https://agl-jenkins-user@lava.automotivelinux.org $MYJOB | tee .status ) || true
STATUS=`grep "Job Status:" .status | sed -e "s#Job Status: ##g"`
if [ x"Complete" = x"$STATUS" ] ; then
echo "YAY! $STATUS"
curl -o plain_output.yaml https://lava.automotivelinux.org/scheduler/job/$MYJOB/log_file/plain
cat plain_output.yaml | grep '"target",' | sed -e 's#- {"dt".*"lvl".*"msg":."##g' -e 's#"}$##g'
# cleanup
#ssh -o StrictHostKeyChecking=no jenkins-slave@10.30.72.8 rm -rf /srv/download/AGL/upload/ci/${CHID}/
exit 0
else
echo "Nooooooooo! $STATUS"
curl -o plain_output.yaml https://lava.automotivelinux.org/scheduler/job/$MYJOB/log_file/plain
cat plain_output.yaml | grep '"target",' | sed -e 's#- {"dt".*"lvl".*"msg":."##g' -e 's#"}$##g'
# cleanup
#ssh -o StrictHostKeyChecking=no jenkins-slave@10.30.72.8 rm -rf /srv/download/AGL/upload/ci/${CHID}/
exit 1
fi
|