From 8a365f0c9e5c4a744f70c5dd4904ce8d8f926c34 Mon Sep 17 00:00:00 2001 From: Aaryamann Challani <43716372+rymnc@users.noreply.github.com> Date: Tue, 4 Jul 2023 12:10:35 +0530 Subject: [PATCH] fix(ci): homebrew errors on github actions (#181) --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7f80a74..7b2f23c 100644 --- a/Makefile +++ b/Makefile @@ -8,12 +8,13 @@ all: .pre-build build .pre-build: .fetch-submodules @cargo install cargo-make ifdef CI - @cargo install cross --git https://github.com/cross-rs/cross --rev 1511a28 + @cargo install cross --git https://github.com/cross-rs/cross.git --rev 1511a28 endif installdeps: .pre-build ifeq ($(shell uname),Darwin) - @brew update +# commented due to https://github.com/orgs/Homebrew/discussions/4612 +# @brew update @brew install cmake ninja else ifeq ($(shell uname),Linux) @sudo apt-get update