Skip to content

Commit

Permalink
Update CI -4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dewmal committed Aug 13, 2024
1 parent 9107855 commit 5620a15
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ jobs:
args: -i python --release --out dist
- name: Install build wheel - x86_64
run: |
pip install --force-reinstall dist/robyn*.whl
cd ~ && python -c 'import robyn'
pip install --force-reinstall dist/ceylon*.whl
cd ~ && python -c 'import ceylon'
- name: Build wheels - universal2
uses: PyO3/maturin-action@v1
with:
args: -i python --release --universal2 --out dist
- name: Install build wheel - universal2
run: |
pip install --force-reinstall dist/robyn*_universal2.whl
cd ~ && python -c 'import robyn'
pip install --force-reinstall dist/ceylon*_universal2.whl
cd ~ && python -c 'import ceylon'
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -67,8 +67,8 @@ jobs:
- name: Install build wheel
shell: bash
run: |
pip install --force-reinstall dist/robyn*.whl
cd ~ && python -c 'import robyn'
pip install --force-reinstall dist/ceylon*.whl
cd ~ && python -c 'import ceylon'
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -97,8 +97,8 @@ jobs:
- name: Install build wheel
if: matrix.target == 'x86_64'
run: |
pip install --force-reinstall dist/robyn*.whl
cd ~ && python -c 'import robyn'
pip install --force-reinstall dist/ceylon*.whl
cd ~ && python -c 'import ceylon'
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -153,8 +153,8 @@ jobs:
$PYTHON -m venv venv
source venv/bin/activate
pip install --upgrade pip setuptools wheel
pip install --force-reinstall dist/robyn*.whl
cd ~ && python -c 'import robyn'
pip install --force-reinstall dist/ceylon*.whl
cd ~ && python -c 'import ceylon'
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 5620a15

Please sign in to comment.