mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +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
332 B
Bash
14 lines
332 B
Bash
#!/bin/bash -e -o pipefail
|
|
source ~/utils/utils.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"
|