Skip to content

Commit 195bb7a

Browse files
committed
Add a test the instance storage works
1 parent e3e4436 commit 195bb7a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.buildkite/steps/launch.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ if [[ "$os" == "windows" ]]; then
3131
fi
3232

3333
if [[ "$arch" == "arm64" ]]; then
34-
instance_type="t4g.small"
34+
instance_type="m6gd.medium"
35+
enable_instance_storage="true"
3536
fi
3637

3738
cat << EOF > config.json
@@ -95,6 +96,10 @@ cat << EOF > config.json
9596
{
9697
"ParameterKey": "ScaleInIdlePeriod",
9798
"ParameterValue": "60"
99+
},
100+
{
101+
"ParameterKey": "EnableInstanceStorage",
102+
"ParameterValue": "${enable_instance_storage:-false}"
98103
}
99104
]
100105
EOF

0 commit comments

Comments
 (0)