Skip to content

Commit

Permalink
adding arm on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavsuku-db committed Jul 30, 2024
1 parent 67bfa23 commit 939626c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ jobs:

- name: Install maturin
run: pip install maturin

- name: Install dependencies for cross-compilation (ARM64 Linux)
if: matrix.os == 'ubuntu-latest' && matrix.arch == 'arm64'
run: |
sudo dpkg --add-architecture arm64
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu libc6-dev-arm64-cross libssl-dev:arm64 pkg-config-aarch64-linux-gnu
shell: bash

- name: Build wheel (x86_64 macOS)
if: matrix.os == 'macos-latest' && matrix.arch == 'x86_64'
Expand Down

0 comments on commit 939626c

Please sign in to comment.