From 9995a2136cb099bc0683ef50b35b5a9158cd68c5 Mon Sep 17 00:00:00 2001 From: Him188 Date: Mon, 1 May 2023 10:45:06 +0100 Subject: [PATCH] [build] Publishing: remove install OpenSSL for macOS --- .github/workflows/check-publishing.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/check-publishing.yml b/.github/workflows/check-publishing.yml index 514b3d226..d671c6087 100644 --- a/.github/workflows/check-publishing.yml +++ b/.github/workflows/check-publishing.yml @@ -84,17 +84,6 @@ jobs: - if: ${{ env.isUnix == 'true' }} run: chmod -R 777 * - # Prepare environment for linking on macOS - - if: ${{ env.isMac == 'true' }} - name: Install OpenSSL on Mac OS - run: > - git clone https://github.com/openssl/openssl.git --recursive && - cd openssl && - git checkout tags/openssl-3.0.3 && - ./Configure --prefix=/opt/openssl --openssldir=/usr/local/ssl && - make && - sudo make install - # Prepare environment for linking on Ubuntu - if: ${{ env.isUbuntu == 'true' }} name: Install OpenSSL on Ubuntu