mirror of
https://github.com/actions/runner-images.git
synced 2025-12-27 11:58:15 +08:00
* [macOS] Fail Pester tests on error * return it back * [macOS] Pester tests invokation after install * fix nitpicks * CocoaPods fix
15 lines
363 B
Bash
15 lines
363 B
Bash
#!/bin/bash -e -o pipefail
|
|
source ~/utils/utils.sh
|
|
source ~/utils/invoke-tests.sh
|
|
|
|
# MongoDB object-value database
|
|
# installs last version of MongoDB Community Edition
|
|
# https://docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/v
|
|
|
|
echo "Installing mongodb..."
|
|
|
|
brew tap mongodb/brew
|
|
brew_smart_install "mongodb-community"
|
|
|
|
invoke_tests "Databases" "Mongo"
|