File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ RUN apt-get update --fix-missing && \
3030 ca-certificates \
3131 gnupg \
3232 protobuf-compiler \
33- git
33+ git \
34+ jq
3435
3536# # Setup Java and Python
3637
Original file line number Diff line number Diff line change 161161# Count files in the ZIP and verify we have multiple files (manifest + data files)
162162# this counts one more than what is in the archive
163163file_count=$( unzip -l test-support-bundle-full.zip | grep -E " ^\s*[0-9]+" | wc -l)
164- if [ " $file_count " -lt 8 ]; then
165- echo " Expected at least 7 files in support bundle (manifest.txt + data files +/- the heap profile which doesnt work on macos), found $file_count "
164+ if [ " $file_count " -lt 9 ]; then
165+ echo " Expected at least 8 files in support bundle (manifest.txt + data files +/- the heap profile which doesnt work on macos), found $file_count "
166166 unzip -l test-support-bundle-full.zip
167167 exit 1
168168fi
@@ -176,6 +176,7 @@ fda support-bundle p1 \
176176 --no-stats \
177177 --no-pipeline-config \
178178 --no-system-config \
179+ --no-dataflow-graph \
179180 -o test-support-bundle-none.zip
180181
181182# Verify the ZIP file exists and check its contents
You can’t perform that action at this time.
0 commit comments