summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrei Vagin <avagin@google.com>2019-11-08 14:07:34 -0800
committergVisor bot <gvisor-bot@google.com>2019-11-08 14:08:54 -0800
commit50d6236111485acce0e728794c4f53884097ea7d (patch)
tree61227d2f84c1ec926fb94ffd748721c6fc6517fb
parentaf58a4e3bb0ba81c103429317eb0c2735450136c (diff)
Update kokoro images to install junitparser
junitparser will be used to merge junit xml files. PiperOrigin-RevId: 279387305
-rwxr-xr-xkokoro/ubuntu1604/40_kokoro.sh5
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