From 646fc2359de4c2ba7b544ca36a6744e21db0e414 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 10 Oct 2024 10:31:09 +1100 Subject: [PATCH] Debugging CI 2 --- .drone.jsonnet | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index b00f1f3ec..324360691 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -6,6 +6,7 @@ local version_info = { name: 'Version Information', environment: { LANG: 'en_US.UTF-8' }, commands: [ + 'which xcresultparser', 'git --version', 'xcodebuild -version', 'xcbeautify --version', @@ -76,7 +77,6 @@ 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 @@ -92,7 +92,6 @@ 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'],