diff options
author | Andrei Vagin <avagin@google.com> | 2019-11-08 14:07:34 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-11-08 14:08:54 -0800 |
commit | 50d6236111485acce0e728794c4f53884097ea7d (patch) | |
tree | 61227d2f84c1ec926fb94ffd748721c6fc6517fb /kokoro | |
parent | af58a4e3bb0ba81c103429317eb0c2735450136c (diff) |
Update kokoro images to install junitparser
junitparser will be used to merge junit xml files.
PiperOrigin-RevId: 279387305
Diffstat (limited to 'kokoro')
-rwxr-xr-x | kokoro/ubuntu1604/40_kokoro.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kokoro/ubuntu1604/40_kokoro.sh b/kokoro/ubuntu1604/40_kokoro.sh index 64772d74d..b132abcc8 100755 --- a/kokoro/ubuntu1604/40_kokoro.sh +++ b/kokoro/ubuntu1604/40_kokoro.sh @@ -23,7 +23,10 @@ declare -r ssh_public_keys=( ) # Install dependencies. -apt-get update && apt-get install -y rsync coreutils python-psutil qemu-kvm +apt-get update && apt-get install -y rsync coreutils python-psutil qemu-kvm python-pip + +# junitparser is used to merge junit xml files. +pip install junitparser # We need a kbuilder user. if useradd -c "kbuilder user" -m -s /bin/bash kbuilder; then |