1#!/bin/bash 2# Copyright (c) 2021 Linaro Limited 3# 4# SPDX-License-Identifier: Apache-2.0 5set -eE 6 7buildkite-agent artifact download twister-*.xml . 8 9xmls="" 10 11for f in twister-*xml; do [ -s ${f} ] && xmls+="${f} "; done 12 13if [ "${xmls}" ]; then 14 junitparser merge ${xmls} junit.xml 15 buildkite-agent artifact upload junit.xml 16 junit2html junit.xml 17 buildkite-agent artifact upload junit.xml.html 18 buildkite-agent annotate --style "info" "Read the <a href=\"artifact://junit.xml.html\">JUnit test report</a>" 19fi 20