From c3d15157ad976412682e86f72c0f40fc6e58af4d Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sat, 3 Aug 2024 18:41:17 +0200 Subject: [PATCH] git: Silence brew commands spewing errors into the CI log --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a6e0bca4f..aa7aa3572 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -206,14 +206,15 @@ jobs: - name: ⬇️ Install dependencies run: | - brew reinstall python || brew link --overwrite python || true - brew bundle --no-lock --file dist/Brewfile + brew reinstall python 2>&1 >/dev/null || true + brew link --overwrite python 2>&1 >/dev/null || true + brew bundle --no-lock --file dist/Brewfile 2>&1 >/dev/null || true rm -rf /usr/local/Cellar/capstone - name: ⬇️ Install classic glfw if: ${{! matrix.custom_glfw }} run: | - brew install glfw || true + brew install glfw 2>&1 >/dev/null || true - name: ⬇️ Install .NET uses: actions/setup-dotnet@v4