5
5
6
6
echo " Running MONGODB-OIDC authentication tests"
7
7
echo " OIDC_ENV $OIDC_ENV "
8
-
8
+ FULL_DESCRIPTION= $OIDC_ENV
9
9
if [ $OIDC_ENV == " test" ]; then
10
10
if [ -z " $DRIVERS_TOOLS " ]; then
11
11
echo " Must specify DRIVERS_TOOLS"
@@ -27,14 +27,14 @@ elif [ $OIDC_ENV == "k8s" ]; then
27
27
exit 1
28
28
fi
29
29
30
+ FULL_DESCRIPTION=" ${OIDC_ENV} - ${K8S_VARIANT} "
30
31
# fix for git permissions issue:
31
32
git config --global --add safe.directory /tmp/test
32
33
else
33
34
echo " Unrecognized OIDC_ENV $OIDC_ENV "
34
35
exit 1
35
36
fi
36
37
37
-
38
38
if ! which java ; then
39
39
echo " Installing java..."
40
40
sudo apt install openjdk-17-jdk -y
@@ -52,15 +52,15 @@ ADMIN_URI=${MONGODB_URI/$TO_REPLACE/$REPLACEMENT}
52
52
echo " Running gradle version"
53
53
./gradlew -version
54
54
55
- echo " Running gradle classes compile for driver-sync and driver-reactive-streams"
55
+ echo " Running gradle classes compile for driver-sync and driver-reactive-streams: ${FULL_DESCRIPTION} "
56
56
./gradlew --parallel --stacktrace --info \
57
57
driver-sync:classes driver-reactive-streams:classes
58
58
59
- echo " Running OIDC authentication tests against driver-sync"
59
+ echo " Running OIDC authentication tests against driver-sync: ${FULL_DESCRIPTION} "
60
60
./gradlew -Dorg.mongodb.test.uri=" $ADMIN_URI " \
61
61
--stacktrace --debug --info \
62
62
driver-sync:test --tests OidcAuthenticationProseTests --tests UnifiedAuthTest
63
63
64
- echo " Running OIDC authentication tests against driver-reactive-streams"
64
+ echo " Running OIDC authentication tests against driver-reactive-streams: ${FULL_DESCRIPTION} "
65
65
./gradlew -Dorg.mongodb.test.uri=" $ADMIN_URI " \
66
66
--stacktrace --debug --info driver-reactive-streams:test --tests OidcAuthenticationAsyncProseTests
0 commit comments