Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: increase range of python FFI support #870

Merged
merged 23 commits into from
Aug 8, 2024
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/build-python-release.reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Release language_client_python

on:
workflow_call: {}
push:
branches: [sam/glibc-aarch64]

concurrency:
# suffix is important to prevent a concurrency deadlock with the calling workflow
Expand All @@ -22,7 +24,7 @@ jobs:
- runs_on: ubuntu-latest
target: aarch64
name: aarch64-unknown-linux-gnu
manylinux: '2_28'
manylinux: '2014/2_17'

- runs_on: macos-latest
target: x86_64
Expand Down Expand Up @@ -57,12 +59,13 @@ jobs:
yum update -y && yum install -y perl-core openssl openssl-devel pkgconfig libatomic
else
# If we're running on debian-based system.
apt update -y && apt-get install -y libssl-dev openssl pkg-config
# sudo apt update -y && apt-get install -y libssl-dev openssl pkg-config
:
fi

- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix._.name }}
path: engine/language_client_python/dist
if-no-files-found: error
if-no-files-found: error
Loading