24 lines
846 B
Bash
Executable File
24 lines
846 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
set -euo pipefail
|
|
|
|
script_dir=${0:A:h}
|
|
catalog_dir=${script_dir:h}
|
|
outputs_dir=${catalog_dir:h}
|
|
remote_export="$outputs_dir/Calculet-NPU-analysis-bundle-20260801/remote-export"
|
|
archive_dir="$remote_export/archives"
|
|
|
|
cd "$archive_dir"
|
|
shasum -a 256 -c ../LOCAL-ALL-DOWNLOADED-ARCHIVES.sha256
|
|
|
|
/opt/homebrew/bin/zstd -t 00-critical-context-20260801.tar.zst
|
|
/opt/homebrew/bin/zstd -t 01-model-runtime-no-weights-20260801.tar.zst
|
|
/opt/homebrew/bin/zstd -t user2-live-home-complete-20260801.tar.zst
|
|
/opt/homebrew/bin/zstd -t calculet-models-complete-20260801.tar.zst
|
|
gzip -t llama.cpp-full-no-exclusions-fd9bd632.tar.gz
|
|
gzip -t calculet-container-home-v0.4.8-release.tar.gz
|
|
bsdtar -tf baseline-analysis-export-20260801.tar >/dev/null
|
|
bsdtar -tf calculet-llama-v0.4.8-release.oci.tar >/dev/null
|
|
|
|
print -r -- "PASS: all eight main archives"
|