-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add musl to linux install * github workflows * added rustls * add musl to linux install * add musl to linux install * update manylinux version * update manylinux version
- Loading branch information
Showing
1 changed file
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,12 +20,12 @@ jobs: | |
matrix: | ||
target: [x86_64, aarch64] | ||
steps: | ||
# - name: "Check if user has write access" | ||
# uses: "lannonbr/[email protected]" | ||
# with: | ||
# permission: "write" | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: "Check if user has write access" | ||
uses: "lannonbr/[email protected]" | ||
with: | ||
permission: "write" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set up cargo cache | ||
uses: actions/cache@v3 | ||
continue-on-error: false | ||
|
@@ -54,7 +54,7 @@ jobs: | |
command: build | ||
target: ${{ matrix.target }} | ||
args: --release --out dist -i python3.7 -i python3.8 -i python3.9 -i python3.10 -i python3.11 | ||
manylinux: auto | ||
manylinux: 2_28 | ||
before-script-linux: | | ||
if [[ -f /etc/os-release ]]; then | ||
. /etc/os-release | ||
|
@@ -83,6 +83,12 @@ jobs: | |
yum update -y | ||
yum install -y pkgconfig openssl-devel | ||
;; | ||
almalinux) | ||
echo "Installing openssl-dev on almalinux..." | ||
dnf update -y | ||
dnf group install -y 'Development Tools' | ||
dnf install -y pkg-config openssl-devel | ||
;; | ||
*) | ||
echo "Unsupported distribution: $ID" | ||
exit 1 | ||
|