From 3cb2a77e1b8bbb75783eb55516d43b038003d804 Mon Sep 17 00:00:00 2001 From: andri lim Date: Tue, 21 May 2024 00:11:29 +0700 Subject: [PATCH] CI do not install openssl on macos+nim devel anymore (#150) --- .github/workflows/ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6eef02a..ae342e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,13 +69,6 @@ jobs: chmod 755 external/bin/gcc external/bin/g++ echo '${{ github.workspace }}/external/bin' >> $GITHUB_PATH - - name: 'Install dependencies (macOS)' - if: runner.os == 'macOS' && matrix.branch == 'devel' - run: | - brew install openssl@1.1 - ln -s $(brew --prefix)/opt/openssl/lib/libcrypto.1.1.dylib /usr/local/lib/ - ln -s $(brew --prefix)/opt/openssl/lib/libssl.1.1.dylib /usr/local/lib/ - - name: MSYS2 (Windows i386) if: runner.os == 'Windows' && matrix.target.cpu == 'i386' uses: msys2/setup-msys2@v2