Files
runner-images-temp/images/macos/provision/core/openssl.sh
T
Aleksandr ChebotovandGitHub caa7a1ac6d [macOS] Get rid of invoke_tests imports (#2496)
* get rid of invoke_tests imports

* add sudo

* change path to /usr/bin/invoke_tests

* create /usr/local/bin dir

* remove local variables

* fix group owner

* set default 775 perm

* delete invoke_tests symlink
2021-01-22 09:26:28 +03:00

14 lines
344 B
Bash
Executable File

#!/bin/bash -e -o pipefail
source ~/utils/utils.sh
echo "Install latest openssl"
brew_smart_install "openssl"
echo "Install [email protected]"
brew_smart_install "[email protected]"
# Symlink brew [email protected] to `/usr/local/bin` as Homebrew refuses
ln -sf $(brew --prefix [email protected])/bin/openssl /usr/local/bin/openssl
invoke_tests "Common" "OpenSSL"