diff options
author | Patrick Lewis <pat@lo5t.com> | 2021-10-02 03:01:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-02 12:01:57 +0200 |
commit | ac0d990fef0416547a6b7c75a6371459503c2bad (patch) | |
tree | 6dc109fb6b9c4595797ec87993df7f9326ddb8fa /apps/installer | |
parent | 775c6744d2f6b1ff4a56480ca08d38ac585953e5 (diff) |
fix(CI/MacOS) openssl sym link (#8201)
* fix(CI/MacOS) openssl
Diffstat (limited to 'apps/installer')
-rw-r--r-- | apps/installer/includes/os_configs/osx.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/installer/includes/os_configs/osx.sh b/apps/installer/includes/os_configs/osx.sh index a20fc2765f..bf09d97849 100644 --- a/apps/installer/includes/os_configs/osx.sh +++ b/apps/installer/includes/os_configs/osx.sh @@ -8,3 +8,8 @@ fi ########################################## brew install openssl@1.1 readline boost bash-completion curl unzip mysql ccache + +########################################## +## workaround to fix openssl in ci until https://github.com/actions/virtual-environments/pull/4206 is merged +ln -sf $(brew --cellar openssl@1.1)/1.1.1* /usr/local/opt/openssl +########################################## |