Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ce9c9fa

Browse files
committedJan 23, 2021
adding openssl installations for linux and mac
1 parent e45d14e commit ce9c9fa

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎.github/workflows/integration_tests.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,21 @@ jobs:
135135
run: |
136136
choco install openssl -r
137137
138+
- name: Install OpenSSL (MacOS)
139+
if: matrix.target_platform == 'Desktop' &&
140+
matrix.ssl_variant == 'openssl' &&
141+
startsWith(matrix.os, 'macos')
142+
run: |
143+
brew install openssl
144+
145+
- name: Install OpenSSL (MacOS)
146+
if: matrix.target_platform == 'Desktop' &&
147+
matrix.ssl_variant == 'openssl' &&
148+
startsWith(matrix.os, 'ubuntu')
149+
run: |
150+
sudo apt install openssl
151+
152+
138153
- name: Build integration tests
139154
shell: bash
140155
run: |

0 commit comments

Comments
 (0)
Please sign in to comment.