Update and rename build.yml to CI.yml

This commit is contained in:
googlefan256
2025-02-23 12:17:53 +09:00
committed by GitHub
parent 70b5852d1b
commit 6afa667f2e

View File

@@ -34,7 +34,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
before-script-linux: yum -y install openssl openssl-devel
before-script-linux: command -v yum >/dev/null 2>&1 && { sudo yum -y install openssl openssl-devel; } || { command -v apt-get >/dev/null 2>&1 && { sudo apt-get update && sudo apt-get install -y openssl libssl-dev; } || { command -v apk >/dev/null 2>&1 && { sudo apk add --no-cache openssl openssl-dev; } || { command -v pacman >/dev/null 2>&1 && { sudo pacman -Sy --noconfirm openssl; } || { command -v zypper >/dev/null 2>&1 && { sudo zypper --non-interactive install openssl openssl-devel; } || { echo "No supported package manager found"; exit 1; } } } } }
sccache: 'true'
manylinux: auto
working-directory: ./crates/sbv2_bindings