From d88b530fb7f346f727bd489bcfaa9295ccbd93c4 Mon Sep 17 00:00:00 2001 From: MyungJoo Ham Date: Mon, 21 Nov 2022 21:48:35 +0900 Subject: [PATCH] Workaround:CI/macos do not try to update brew images. Updating the given image incurs an error with sbt. Don't try to update it. Fixes #3960 Signed-off-by: MyungJoo Ham --- .github/workflows/macos.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index f226e89..8374d1f 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v1 - name: homebrew - run: brew install cask && brew update + run: brew install cask - name: install minimal requirements run: brew install meson ninja pkg-config cmake libffi glib gstreamer gst-plugins-base gst-plugins-good numpy - uses: BSFishy/meson-build@v1.0.3 -- 2.7.4