ci(omnl): install zip/unzip in-job for act-runner
Some checks failed
AI Code Review / claude-review (pull_request) Failing after 37s
Validate Config / Config & validation (pull_request) Successful in 10s
Validate OMNL Rail / OMNL rail checks (pull_request) Successful in 38s
Validate Token List / Validate Token List (pull_request) Failing after 37s

scripts/omnl/build-transaction-package-zip.sh and the smoke script
require 'zip' and 'unzip' binaries; act-runner's default image does
not ship either. Install them idempotently before the smoke step
(same pattern used in smom-dbis-138 CI hardening PR #2).

Co-Authored-By: Nakamoto, S <defi@defi-oracle.io>
This commit is contained in:
Devin AI
2026-04-18 23:36:15 +00:00
parent 35eb6ca48b
commit 87be4c4fb0

View File

@@ -27,6 +27,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install zip/unzip (act-runner image may lack them)
run: |
need=""
command -v zip >/dev/null 2>&1 || need="$need zip"
command -v unzip >/dev/null 2>&1 || need="$need unzip"
if [ -n "$need" ]; then
sudo apt-get update && sudo apt-get install -y $need
fi
- name: .gitignore and resolve_ids
run: bash scripts/omnl/validate-rail.sh