Skip to content

Commit a3350f7

Browse files
committed
CI ONLY DO NOT MERGE
1 parent bea5a26 commit a3350f7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

hack/e2e/run.sh

+7
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,13 @@ TEST_EXTRA_FLAGS=${TEST_EXTRA_FLAGS:-}
7474

7575
CLEAN=${CLEAN:-"true"}
7676

77+
78+
FILE_SYSTEM_IDS=$(aws --region ${REGION} fsx describe-file-systems --query "FileSystems[?FileSystemType=='LUSTRE'].FileSystemId" --output text)
79+
for FILE_SYSTEM_ID in $FILE_SYSTEM_IDS
80+
do
81+
aws --region ${REGION} --endpoint-url ${ENDPOINT_URL} fsx delete-file-system --file-system-id ${FILE_SYSTEM_ID}
82+
done
83+
7784
loudecho "Testing in region ${REGION} and zones ${ZONES}"
7885
mkdir -p "${BIN_DIR}"
7986
export PATH=${PATH}:${BIN_DIR}

0 commit comments

Comments
 (0)