From 4166ad18ae340aacca32279f8824adc52d46c2ba Mon Sep 17 00:00:00 2001 From: mcbarton Date: Mon, 15 Sep 2025 10:54:05 +0100 Subject: [PATCH 1/2] Remove kotlin macos ci jobs --- .github/actions/Miscellaneous/Install_Dependencies/action.yml | 1 + .github/workflows/emscripten.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/actions/Miscellaneous/Install_Dependencies/action.yml b/.github/actions/Miscellaneous/Install_Dependencies/action.yml index 9fe855fa6..109b7ad47 100644 --- a/.github/actions/Miscellaneous/Install_Dependencies/action.yml +++ b/.github/actions/Miscellaneous/Install_Dependencies/action.yml @@ -15,6 +15,7 @@ runs: else brew remove unxip fi + brew remove kotlin # workaround for https://github.com/actions/setup-python/issues/577 for pkg in $(brew list | grep '^python@'); do brew unlink "$pkg" diff --git a/.github/workflows/emscripten.yml b/.github/workflows/emscripten.yml index daa4d8152..7be5fb42f 100644 --- a/.github/workflows/emscripten.yml +++ b/.github/workflows/emscripten.yml @@ -131,6 +131,7 @@ jobs: brew unlink "$pkg" brew link --overwrite "$pkg" done + brew remove kotlin brew upgrade openssl >/dev/null 2>&1 brew install ninja brew upgrade From abe8c683f2f01691c70e1ebe6b431c3df8a0c98c Mon Sep 17 00:00:00 2001 From: mcbarton Date: Mon, 15 Sep 2025 11:07:15 +0100 Subject: [PATCH 2/2] Try no brew upgrade --- .github/actions/Miscellaneous/Install_Dependencies/action.yml | 3 --- .github/workflows/emscripten.yml | 3 --- 2 files changed, 6 deletions(-) diff --git a/.github/actions/Miscellaneous/Install_Dependencies/action.yml b/.github/actions/Miscellaneous/Install_Dependencies/action.yml index 109b7ad47..628ee3cb3 100644 --- a/.github/actions/Miscellaneous/Install_Dependencies/action.yml +++ b/.github/actions/Miscellaneous/Install_Dependencies/action.yml @@ -15,14 +15,11 @@ runs: else brew remove unxip fi - brew remove kotlin # workaround for https://github.com/actions/setup-python/issues/577 for pkg in $(brew list | grep '^python@'); do brew unlink "$pkg" brew link --overwrite "$pkg" done - brew upgrade openssl >/dev/null 2>&1 - brew upgrade --force brew install ninja brew install eigen brew install boost diff --git a/.github/workflows/emscripten.yml b/.github/workflows/emscripten.yml index 7be5fb42f..d6f512925 100644 --- a/.github/workflows/emscripten.yml +++ b/.github/workflows/emscripten.yml @@ -131,10 +131,7 @@ jobs: brew unlink "$pkg" brew link --overwrite "$pkg" done - brew remove kotlin - brew upgrade openssl >/dev/null 2>&1 brew install ninja - brew upgrade - name: Install deps on Linux if: ${{ runner.os == 'Linux' && steps.cache.outputs.cache-hit != 'true' }}