Skip to content

Commit

Permalink
add multiarch
Browse files Browse the repository at this point in the history
  • Loading branch information
bkochauri-memphis committed Sep 9, 2024
1 parent 3ae0598 commit 7d8b0c6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,20 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
arch: [x86_64, aarch64] # Use 'aarch64' for Linux ARM builds, 'x86_64' for AMD/Intel
arch: [x86_64, aarch64] # Use 'aarch64' for Linux ARM builds, 'x86_64' for AMD/Intel

steps:
- uses: actions/checkout@v4

# Set up Python environment
- uses: actions/setup-python@v5

# Install librdkafka for the Confluent Kafka build
- name: Install librdkafka (for confluent_kafka)
run: |
sudo apt-get update
sudo apt-get install -y librdkafka-dev
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.20.0

Expand Down

0 comments on commit 7d8b0c6

Please sign in to comment.