We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6653d5 commit 7b48a91Copy full SHA for 7b48a91
.github/workflows/test.yml
@@ -93,12 +93,10 @@ jobs:
93
shell: bash
94
run: |
95
which xsltproc || sudo apt-get install -y xsltproc
96
- find . -name '*.xml' | while read -r xml_file; do
97
- echo "Fixing $xml_file"
98
- tmp_file="$(mktemp)"
99
- xsltproc --output "$tmp_file" ".github/workflows/add_final_status.xsl" "$xml_file"
100
- mv "$tmp_file" "$xml_file"
101
- done
+ echo "Fixing target/nextest/ci/junit.xml"
+ tmp_file="$(mktemp)"
+ xsltproc --output "$tmp_file" ".github/workflows/add_final_status.xsl" "target/nextest/ci/junit.xml"
+ mv "$tmp_file" "target/nextest/ci/junit.xml"
102
103
- name: Upload test results to Datadog
104
if: success() || failure()
0 commit comments