ci: install zip #8
@@ -126,12 +126,18 @@ jobs:
|
||||
with:
|
||||
dotnet-version: '8.0.x'
|
||||
|
||||
- name: Ensure tooling (jq)
|
||||
- name: Ensure tooling (jq, zip)
|
||||
shell: bash
|
||||
run: |
|
||||
set -euo pipefail
|
||||
command -v jq >/dev/null 2>&1 || { sudo apt-get update -y && sudo apt-get install -y jq; }
|
||||
missing=""
|
||||
command -v jq >/dev/null 2>&1 || missing="$missing jq"
|
||||
command -v zip >/dev/null 2>&1 || missing="$missing zip"
|
||||
if [ -n "$missing" ]; then
|
||||
sudo apt-get update -y && sudo apt-get install -y $missing
|
||||
fi
|
||||
jq --version
|
||||
zip --version | head -2
|
||||
|
||||
# Test gate: pure-Go, so no C toolchain is needed. A failure stops the
|
||||
# release before anything is built or published.
|
||||
|
||||
Reference in New Issue
Block a user