Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
linux wheel
  • Loading branch information
Vhou-Atroph committed Mar 5, 2024
1 parent 5a5d8d4 commit 36300eb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,28 @@ jobs:
fail-fast: false
matrix:
target: [x64]
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
architecture: ${{ matrix.target }}
- name: Build Wheel
run: |
pip install maturin
maturin build --out dist
- name: Upload Wheel
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

linux-wheel:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout branch
uses: actions/checkout@v3
Expand Down

0 comments on commit 36300eb

Please sign in to comment.