mirror of
https://github.com/neodyland/sbv2-api.git
synced 2026-01-03 13:02:57 +00:00
Update and rename build.yml to CI.yml
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user