mergejunit.sh 517 B

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