We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2e058b3 + ae690f8 commit 7fa382bCopy full SHA for 7fa382b
1 file changed
vendor_download.sh
@@ -271,3 +271,12 @@ for binary in vendor-bins/*; do
271
"$binary" --version || echo "failed to get version information"
272
fi
273
done
274
+
275
+# Strict smoke-test ficus: it is embedded via Template Haskell into the CLI
276
+# binary (and downstream consumers like Hubble), so a non-runnable ficus
277
+# (wrong glibc, wrong arch, corrupt download) ships silently otherwise and
278
+# only manifests at run time.
279
+./vendor-bins/ficus --version > /dev/null || {
280
+ echo "ERROR: vendor-bins/ficus does not run in this image"
281
+ exit 1
282
+}
0 commit comments