-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4861 from mozilla/mntor-3388
- Loading branch information
Showing
2 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env bash | ||
|
||
TARGET_PATH=/tmp/nimbus-cli | ||
NIMBUS_INSTALL_REMOTE_PATH=https://raw.githubusercontent.com/mozilla/application-services/main/install-nimbus-cli.sh | ||
NIMBUS_INSTALL_LOCAL_PATH=$TARGET_PATH/install.sh | ||
|
||
if command -v "${TARGET_PATH}/nimbus-cli"; then | ||
echo "Skip installation of \`nimbus-cli\`" | ||
else | ||
if [ -d "${TARGET_PATH}" ]; then | ||
echo "Directory for \`nimbus-cli\` already exists: $TARGET_PATH" | ||
else | ||
echo "Create directory for \`nimbus-cli\`: $TARGET_PATH" | ||
mkdir -p $TARGET_PATH | ||
fi | ||
|
||
if [ -f "${NIMBUS_INSTALL_LOCAL_PATH}" ]; then | ||
echo "Skip download of \`nimbus-cli\` installer" | ||
else | ||
echo "Download \`nimbus-cli\` installer from $NIMBUS_INSTALL_REMOTE_PATH to $TARGET_PATH" | ||
curl --proto '=https' --tlsv1.2 -sSf -o "$NIMBUS_INSTALL_LOCAL_PATH" "$NIMBUS_INSTALL_REMOTE_PATH" | ||
fi | ||
|
||
echo "Install \`nimbus-cli\`" | ||
bash $NIMBUS_INSTALL_LOCAL_PATH --directory $TARGET_PATH | ||
fi | ||
|
||
echo "Lint nimbus.yaml" | ||
$TARGET_PATH/nimbus-cli fml -- validate config/nimbus.yaml |