-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
31 additions
and
20 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
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,11 @@ | ||
#!/bin/bash | ||
set -o xtrace # Write all commands first to stderr | ||
set -o errexit # Exit the script with error if any of the commands fail | ||
|
||
export AZUREOIDC_DRIVERS_TAR_FILE=/tmp/node-mongodb-native.tgz | ||
tar czf $AZUREOIDC_DRIVERS_TAR_FILE . | ||
export AZUREOIDC_TEST_CMD="source ./env.sh && PROVIDER_NAME=azure ./.evergreen/run-oidc-tests.sh" | ||
export AZUREOIDC_CLIENTID=$AZUREOIDC_CLIENTID | ||
export PROJECT_DIRECTORY=$PROJECT_DIRECTORY | ||
export PROVIDER_NAME=$PROVIDER_NAME | ||
bash $DRIVERS_TOOLS/.evergreen/auth_oidc/azure/run-driver-test.sh |