mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-10 19:50:37 +00:00
31 lines
1.0 KiB
Bash
31 lines
1.0 KiB
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-mongodb.sh
|
|
## Desc: Install Mongo DB
|
|
################################################################################
|
|
|
|
# Source the helpers
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
toolset_version=$(get_toolset_value '.mongodb.version')
|
|
REPO_URL="https://repo.mongodb.org/apt/ubuntu"
|
|
GPG_KEY="/usr/share/keyrings/mongodb-org-$toolset_version.gpg"
|
|
REPO_PATH="/etc/apt/sources.list.d/mongodb-org-$toolset_version.list"
|
|
|
|
# add Mongo DB repository to apt
|
|
curl -fsSL https://www.mongodb.org/static/pgp/server-$toolset_version.asc | gpg --dearmor -o $GPG_KEY
|
|
echo "deb [ arch=amd64,arm64 signed-by=$GPG_KEY ] $REPO_URL $(lsb_release -cs)/mongodb-org/$toolset_version multiverse" > $REPO_PATH
|
|
|
|
# Install Mongo DB
|
|
sudo apt-get update
|
|
sudo apt-get install mongodb-org
|
|
|
|
# remove Mongo DB's apt repository
|
|
rm $REPO_PATH
|
|
rm $GPG_KEY
|
|
|
|
# Document source repo
|
|
echo "mongodb $REPO_URL" >> $HELPER_SCRIPTS/apt-sources.txt
|
|
|
|
invoke_tests "Databases" "MongoDB"
|