Skip to content

Commit

Permalink
next
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhaus committed Jan 7, 2025
1 parent 8a33852 commit 9a11004
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
fail-fast: false
matrix:
config:
- platform: "x86_64"
manylinux: "musllinux_1_2"
before-script: "sudo apt update && sudo apt install -y pkg-config liblzma-dev"
# - platform: "x86_64"
# manylinux: "musllinux_1_2"
# before-script: "sudo apt update && sudo apt install -y pkg-config liblzma-dev"
- platform: "x86_64"
manylinux: "manylinux_2_28"
before-script: "yum install -y xz-devel"
Expand All @@ -67,6 +67,7 @@ jobs:
sed -i "s/^version = \".*\"/version = \"${{ github.event.release.tag_name }}\"/" pyproject.toml
- name: 🏗 Prepare for build
run: |
uv sync --only-dev
uv pip install pip
- name: 📦 Build wheel
uses: PyO3/maturin-action@v1
Expand All @@ -81,6 +82,9 @@ jobs:
with:
name: wheels-${{ matrix.python-version }}-${{ matrix.config.manylinux }}-${{ matrix.config.platform }}
path: dist
- name: Remove sources to avoid conflicts during tests
run: |
rm -rf deebot_client*
- name: pytest
if: ${{ startsWith(matrix.config.manylinux, 'manylinux') && matrix.config.platform == 'x86_64' }}
shell: bash
Expand Down

0 comments on commit 9a11004

Please sign in to comment.