Skip to content

Commit

Permalink
remove traces of openssl@1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cwaldren-ld committed Sep 20, 2023
1 parent adba16d commit 8a4f8f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/actions/sdk-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,8 @@ runs:
if: runner.os == 'macOS'
shell: bash
run: |
brew link --overwrite openssl@1.1
echo "OPENSSL_ROOT_DIR=$(brew --prefix openssl@1.1)" >> "$GITHUB_ENV"
export OPENSSL_ROOT_DIR=$(brew --prefix openssl@1.1)
echo "OPENSSL_ROOT_DIR=$(brew --prefix openssl@3)" >> "$GITHUB_ENV"
export OPENSSL_ROOT_DIR=$(brew --prefix openssl@3)
./scripts/build-release.sh ${{ inputs.sdk_cmake_target }}
env:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
runs-on: macos-12
steps:
- run: |
brew link --overwrite openssl@3
echo "OPENSSL_ROOT_DIR=$(brew --prefix openssl@3)" >> "$GITHUB_ENV"
# For debugging
echo "OPENSSL_ROOT_DIR=$(brew --prefix openssl@3)"
Expand All @@ -55,6 +54,10 @@ jobs:
build-test-windows:
runs-on: windows-2022
steps:
- name: Upgrade OpenSSL
shell: bash
run: |
choco upgrade openssl
- uses: actions/checkout@v3
- uses: ilammy/msvc-dev-cmd@v1
- uses: ./.github/actions/ci
Expand Down

0 comments on commit 8a4f8f9

Please sign in to comment.