File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -760,6 +760,7 @@ tasks:
760760 binary : bash
761761 env :
762762 EXPECTED_GCPKMS_OUTCOME : " failure"
763+ NODE_LTS_VERSION : ${NODE_LTS_VERSION}
763764 args :
764765 - src/.evergreen/run-gcp-kms-tests.sh
765766
@@ -798,6 +799,7 @@ tasks:
798799 binary : bash
799800 env :
800801 EXPECTED_AZUREKMS_OUTCOME : " failure"
802+ NODE_LTS_VERSION : ${NODE_LTS_VERSION}
801803 args :
802804 - src/.evergreen/run-azure-kms-tests.sh
803805
Original file line number Diff line number Diff line change @@ -692,6 +692,7 @@ tasks:
692692 binary : bash
693693 env :
694694 EXPECTED_GCPKMS_OUTCOME : failure
695+ NODE_LTS_VERSION : ${NODE_LTS_VERSION}
695696 args :
696697 - src/.evergreen/run-gcp-kms-tests.sh
697698 - name : test-azurekms-task
@@ -728,6 +729,7 @@ tasks:
728729 binary : bash
729730 env :
730731 EXPECTED_AZUREKMS_OUTCOME : failure
732+ NODE_LTS_VERSION : ${NODE_LTS_VERSION}
731733 args :
732734 - src/.evergreen/run-azure-kms-tests.sh
733735 - name : oidc-auth-test-k8s-latest-eks
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ source $DRIVERS_TOOLS/.evergreen/init-node-and-npm-env.sh
66
77if [ -z ${AZUREKMS_RESOURCEGROUP+omitted} ]; then echo " AZUREKMS_RESOURCEGROUP is unset" && exit 1; fi
88if [ -z ${AZUREKMS_VMNAME+omitted} ]; then echo " AZUREKMS_VMNAME is unset" && exit 1; fi
9+ if [ -z ${NODE_LTS_VERSION: +omitted} ]; then echo " NODE_LTS_VERSION is unset" && exit 1; fi
910
1011export AZUREKMS_PUBLICKEYPATH=/tmp/testazurekms_publickey
1112export AZUREKMS_PRIVATEKEYPATH=/tmp/testazurekms_privatekey
@@ -26,6 +27,6 @@ export AZUREKMS_CMD="tar xf node-driver-source.tgz"
2627echo " decompressing node driver tar on azure ... end"
2728
2829echo " Running test ... begin"
29- export AZUREKMS_CMD=" env EXPECTED_AZUREKMS_OUTCOME=success bash src/.evergreen/run-azure-kms-tests.sh"
30+ export AZUREKMS_CMD=" env EXPECTED_AZUREKMS_OUTCOME=success NODE_LTS_VERSION= $NODE_LTS_VERSION bash src/.evergreen/run-azure-kms-tests.sh"
3031${DRIVERS_TOOLS} /.evergreen/csfle/azurekms/run-command.sh
3132echo " Running test ... end"
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ if [ -z ${GCPKMS_GCLOUD+omitted} ]; then echo "GCPKMS_GCLOUD is unset" && exit 1
88if [ -z ${GCPKMS_PROJECT+omitted} ]; then echo " GCPKMS_PROJECT is unset" && exit 1; fi
99if [ -z ${GCPKMS_ZONE+omitted} ]; then echo " GCPKMS_ZONE is unset" && exit 1; fi
1010if [ -z ${GCPKMS_INSTANCENAME+omitted} ]; then echo " GCPKMS_INSTANCENAME is unset" && exit 1; fi
11+ if [ -z ${NODE_LTS_VERSION: +omitted} ]; then echo " NODE_LTS_VERSION is unset" && exit 1; fi
1112
1213set -o errexit
1314
@@ -28,5 +29,5 @@ export GCPKMS_CMD="tar -xzf $GCPKMS_SRC"
2829" ${DRIVERS_TOOLS} /.evergreen/csfle/gcpkms/run-command.sh"
2930echo " decompressing node driver tar on gcp ... end"
3031
31- export GCPKMS_CMD=" env EXPECTED_GCPKMS_OUTCOME=success bash src/.evergreen/run-gcp-kms-tests.sh"
32+ export GCPKMS_CMD=" env EXPECTED_GCPKMS_OUTCOME=success NODE_LTS_VERSION= $NODE_LTS_VERSION bash src/.evergreen/run-gcp-kms-tests.sh"
3233bash ${DRIVERS_TOOLS} /.evergreen/csfle/gcpkms/run-command.sh
You can’t perform that action at this time.
0 commit comments