mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
* [macOS] Fail Pester tests on error * return it back * added all files for testing * common utils path changed * linux scripts shouldn't be touched
14 lines
335 B
Bash
Executable File
14 lines
335 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 "OpenSSL"
|