* [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 [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 "OpenSSL"
|