From a27bf7a2107642a2808ad8a4bc215d56c94eaff8 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Wed, 31 Jan 2024 11:44:34 +1100 Subject: [PATCH] Added a step to the CI to output build tool versions --- .drone.jsonnet | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.drone.jsonnet b/.drone.jsonnet index b2546206e..47b0f4a45 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -71,6 +71,20 @@ local update_cocoapods_cache = { [ + // Machine info + { + kind: 'pipeline', + type: 'exec', + name: 'Machine Info', + platform: { os: 'darwin', arch: 'amd64' }, + steps: [ + name: 'Print info', + commands: [ + 'xcodebuild -version', + 'LANG=en_US.UTF-8 pod --version' + ] + ], + }, // Unit tests { kind: 'pipeline',