From 96e458cecd3c6c85395f891f8d70fea1ba1319cc Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Mon, 19 Aug 2024 20:15:42 -0400 Subject: [PATCH] fix: install fortran compiler for macOS --- .github/install-dependencies.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/install-dependencies.sh b/.github/install-dependencies.sh index 3e030d4..3b35497 100755 --- a/.github/install-dependencies.sh +++ b/.github/install-dependencies.sh @@ -9,6 +9,10 @@ case "$runner" in ;; 'macos-latest') brew install meson ninja tree + # install fortran compiler: + brew install gcc + brew unlink gcc + brew link gcc ;; *) exit 1