We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6453fd2 commit 189c612Copy full SHA for 189c612
1 file changed
.ci/scripts/build-qnn-direct-sdk.sh
@@ -28,10 +28,10 @@ if [ ! -f "${ARTIFACT}" ]; then
28
exit 1
29
fi
30
31
-MAX_SIZE_BYTES=$((200 * 1024))
+MAX_SIZE_BYTES=$((150 * 1024))
32
ARTIFACT_SIZE=$(stat -c%s "${ARTIFACT}")
33
if [ "${ARTIFACT_SIZE}" -gt "${MAX_SIZE_BYTES}" ]; then
34
- echo "ERROR: ${ARTIFACT} is ${ARTIFACT_SIZE} bytes, exceeds ${MAX_SIZE_BYTES}-byte (200 KiB) limit" >&2
+ echo "ERROR: ${ARTIFACT} is ${ARTIFACT_SIZE} bytes, exceeds ${MAX_SIZE_BYTES}-byte (150 KiB) limit" >&2
35
36
37
echo "OK: direct-mode build produced ${ARTIFACT} (${ARTIFACT_SIZE} bytes, under ${MAX_SIZE_BYTES}-byte limit)"
0 commit comments