From 1075ac604d441de23ebb3f9f3f61ad662ffacab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Sat, 17 Feb 2024 08:20:54 -0300 Subject: [PATCH] macOS curl fix? --- .github/workflows/full.yml | 5 ++++- etc/build_dir.sh | 7 +++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/full.yml b/.github/workflows/full.yml index e2e2ec01c..ed26e547a 100644 --- a/.github/workflows/full.yml +++ b/.github/workflows/full.yml @@ -147,7 +147,10 @@ jobs: run: brew install ninja - name: Install automake - run: brew install automake curl + run: brew install automake + + - name: Install curl with openssl + run: brew reinstall curl --with-libssh2 --with-openssl - name: Install meson run: brew install meson diff --git a/etc/build_dir.sh b/etc/build_dir.sh index bcdb24f15..3802747e8 100755 --- a/etc/build_dir.sh +++ b/etc/build_dir.sh @@ -96,6 +96,13 @@ fi # # Set environment variables to point to install directory # + +# +# Fix curl certificate issues. +# +export HOMEBREW_FORCE_BREWED_CURL=1 + + export PATH="$PWD/${BUILD_DIR}/install/bin:$PWD/$BUILD_DIR/install/bin/Scripts:${PATH}" #