From d4168e3b800b40100acec1a5547a0ee96bbb88d5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 10 Aug 2022 12:01:38 +0530 Subject: [PATCH] Dont add openssl to the brewfile We only need to install it on CI because the python on CI doesnt come from brew. Normal brewfile based installation will install openssl as a dependency of python --- .github/workflows/ci.py | 2 +- Brewfile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.py b/.github/workflows/ci.py index 08ebaaef4..ccc357a38 100644 --- a/.github/workflows/ci.py +++ b/.github/workflows/ci.py @@ -31,7 +31,7 @@ def install_deps(): sys.stdout.flush() if is_macos: items = (x.split()[1].strip('"') for x in open('Brewfile').readlines() if x.strip().startswith('brew ')) - run('brew', 'install', 'fish', *items) + run('brew', 'install', 'fish', 'openssl', *items) else: run('sudo apt-get update') run('sudo apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev ca-certificates' diff --git a/Brewfile b/Brewfile index ac6f5ab97..a31693338 100644 --- a/Brewfile +++ b/Brewfile @@ -1,7 +1,6 @@ brew "pkg-config" brew "zlib" brew "librsync" -brew "openssl" brew "python" brew "imagemagick" brew "harfbuzz"