Ensure junit is created in failed tarball and out-of-tree jobs
Failed system:gcc:tarball
after script:
Running after script...
$ (source bin/tests/system/conf.sh; $PYTHON bin/tests/convert-trs-to-junit.py . > junit.xml)
/bin/bash: line 159: bin/tests/system/conf.sh: No such file or directory
system:gcc:tarball
now:
Running after script...
$ if [[ -n "${OUT_OF_TREE_WORKSPACE}" ]]; then cd "${OUT_OF_TREE_WORKSPACE}"; else test -d bind-* && cd bind-* || true; fi
$ (source bin/tests/system/conf.sh; $PYTHON "${CI_PROJECT_DIR}/bin/tests/convert-trs-to-junit.py" . > "${CI_PROJECT_DIR}/junit.xml")
$ test -n "${OUT_OF_TREE_WORKSPACE}" && cd "${OUT_OF_TREE_WORKSPACE}"
$ test -d bind-* && cd bind-*
$ cat bin/tests/system/test-suite.log