From 2f0e456a428ef81de7c0747208d581f39e9359da Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Wed, 29 May 2024 23:40:08 +0200 Subject: [PATCH] ci/macos: dump binaries runtime path & dependencies Useful information for investigating issues with the bundle. --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1962ad485..58fafeb4a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -133,6 +133,9 @@ jobs: if: steps.build-restore.outputs.cache-hit != 'true' run: make base + - name: Dump binaries runtime path & dependencies + run: make bindeps + # }}} # Clean / save caches. {{{