mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
* 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
14 lines
344 B
Bash
Executable File
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 openssl@1.1"
|
|
brew_smart_install "openssl@1.1"
|
|
|
|
# Symlink brew openssl@1.1 to `/usr/local/bin` as Homebrew refuses
|
|
ln -sf $(brew --prefix openssl@1.1)/bin/openssl /usr/local/bin/openssl
|
|
|
|
invoke_tests "Common" "OpenSSL"
|