mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-09 23:59:40 +00:00
9 lines
213 B
Bash
Executable File
9 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
# Workflow prepare script for CI
|
|
# Called by shared GitHub Actions workflow before build/test steps
|
|
|
|
set -e
|
|
|
|
# Download ONNX runtime libraries for current platform
|
|
./scripts/download-onnx-libs.sh auto
|