From c693a204620c3ba93462be3b646c8b9aec063fcd Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 10 Oct 2024 10:30:35 +1100 Subject: [PATCH] Debugging CI 1 --- .drone.jsonnet | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.drone.jsonnet b/.drone.jsonnet index 51ab75b2a..b00f1f3ec 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -76,6 +76,7 @@ local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$U commands: [ sim_delete_cmd, ||| + which xcresultparser if [[ -d ./build/artifacts/testResults.xcresult ]]; then xcresultparser --output-format cli --failed-tests-only ./build/artifacts/testResults.xcresult else @@ -91,6 +92,7 @@ local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$U { name: 'Convert xcresult to xml', commands: [ + 'which xcresultparser', 'xcresultparser --output-format cobertura ./build/artifacts/testResults.xcresult > ./build/artifacts/coverage.xml', ], depends_on: ['Build and Run Tests'],