Skip to content

Commit a3cf834

Browse files
committed
use squashfs
1 parent 3a9bcd7 commit a3cf834

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

eng/templates/official/jobs/ci-lc-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
6262
# Upload all function app packages to the container
6363
FUNCTION_APPS_DIR="$(Build.SourcesDirectory)/${{ parameters.PROJECT_DIRECTORY }}/tests/consumption_tests/function_app_zips"
64-
for zipfile in "$FUNCTION_APPS_DIR"/*.zip; do
64+
for zipfile in "$FUNCTION_APPS_DIR"/*; do
6565
filename=$(basename "$zipfile")
6666
echo "Uploading $filename..."
6767
az storage blob upload \
Binary file not shown.

workers/tests/consumption_tests/test_linux_consumption.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,4 +280,4 @@ def _get_blob_url(self, scenario_name: str) -> str:
280280
if not container_sas_token:
281281
raise RuntimeError('Environment variable CONTAINER_SAS_TOKEN is '
282282
'required before running Linux Consumption test')
283-
return f"{base_url}/{scenario_name}.zip?{container_sas_token}"
283+
return f"{base_url}/{scenario_name}.squashfs?{container_sas_token}"

0 commit comments

Comments
 (0)