Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiscode committed Nov 14, 2023
1 parent 5cfbb4e commit 5d3af53
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
args: --release --out dist --sdist
args: --release --out dist
- name: "Python: Install wheels and test import"
run: |
pip install dtpu --no-index --find-links dist --force-reinstall
pip install dist/*.whl --force-reinstall
python -c "import text_utils"
linux:
Expand All @@ -48,8 +48,8 @@ jobs:
uses: PyO3/maturin-action@v1
with:
manylinux: auto
args: --release --out dist --sdist
args: --release --out dist
- name: "Python: Install wheels and test import"
run: |
pip install dtpu --no-index --find-links dist --force-reinstall
pip install dist/*.whl --force-reinstall
python -c "import text_utils"
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
args: --release --out dist --sdist
args: --release --out dist
- name: "Python: Install wheels and test import"
run: |
pip install dtpu --no-index --find-links dist --force-reinstall
pip install dist/*.whl --force-reinstall
python -c "import text_utils"
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -52,10 +52,10 @@ jobs:
uses: PyO3/maturin-action@v1
with:
manylinux: auto
args: --release --out dist --sdist
args: --release --out dist
- name: "Python: Install wheels and test import"
run: |
pip install dtpu --no-index --find-links dist --force-reinstall
pip install dist/*.whl --force-reinstall
python -c "import text_utils"
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 5d3af53

Please sign in to comment.