Skip to content

Commit d7b0589

Browse files
authored
Revert "chore(ci): add final_status property on junit XML [APMSP-2610] (#287)"
This reverts commit 2bbc991.
1 parent 1603dce commit d7b0589

2 files changed

Lines changed: 1 addition & 76 deletions

File tree

.github/workflows/add_final_status.xsl

Lines changed: 0 additions & 50 deletions
This file was deleted.

.github/workflows/dev.yml

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,7 @@ jobs:
6666
run: cd ${BUILD_DIR} && test/tests -r junit -o report.xml
6767
env:
6868
ASAN_OPTIONS: alloc_dealloc_mismatch=0
69-
- name: Add final_status property
70-
if: success() || failure()
71-
run: |
72-
which xsltproc || (apt-get update && apt-get install -y xsltproc)
73-
xml_file=".build/report.xml"
74-
echo "Fixing $xml_file"
75-
tmp_file="$(mktemp)"
76-
xsltproc --output "$tmp_file" ".github/workflows/add_final_status.xsl" "$xml_file"
77-
mv "$tmp_file" "$xml_file"
7869
- name: Upload test report to Datadog
79-
if: success() || failure()
8070
run: |
8171
curl -L --fail "https://github.com/DataDog/datadog-ci/releases/latest/download/datadog-ci_linux-${{ matrix.arch }}" --output "/usr/local/bin/datadog-ci" && chmod +x /usr/local/bin/datadog-ci
8272
datadog-ci junit upload --service dd-trace-cpp --tags test.source.file:test/*.cpp .build/report.xml
@@ -165,25 +155,10 @@ jobs:
165155
run: |
166156
& 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\Common7\\Tools\\Launch-VsDevShell.ps1' -arch ${{ matrix.arch }}
167157
.\build\test\tests.exe -r junit -o report.xml
168-
- name: Add final_status property
169-
if: success() || failure()
170-
run: |
171-
$xmlFile = "report.xml"
172-
$xslFile = ".github/workflows/add_final_status.xsl"
173-
$tmpFile = [System.IO.Path]::GetTempFileName()
174-
175-
echo "Fixing $xmlFile"
176-
177-
$transform = New-Object System.Xml.Xsl.XslCompiledTransform
178-
$transform.Load($xslFile)
179-
$transform.Transform($xmlFile, $tmpFile)
180-
181-
Move-Item -Force $tmpFile $xmlFile
182158
- name: Upload test report to Datadog
183-
if: success() || failure()
184159
run: |
185160
Invoke-WebRequest -Uri "https://github.com/DataDog/datadog-ci/releases/latest/download/datadog-ci_win-x64" -OutFile "datadog-ci.exe"
186-
./datadog-ci.exe junit upload --service dd-trace-cpp --tags test.source.file:test/*.cpp report.xml
161+
./datadog-ci.exe junit upload --service dd-trace-cpp --tags test.source.file:test/*.cpp report.xml
187162
188163
coverage:
189164
needs: build-linux-cmake

0 commit comments

Comments
 (0)