Skip to content

Commit

Permalink
fix: change aarch build script
Browse files Browse the repository at this point in the history
  • Loading branch information
liufang-robot committed Mar 18, 2024
1 parent 450361a commit 2bb540e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows_python_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down
27 changes: 14 additions & 13 deletions .github/workflows/windows_python_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ permissions:
id-token: write
pull-requests: read

jobs:
windows_python310_release:
runs-on: windows-latest
jobs:
windows_cp38_release:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.8'
- name: Check cmake
run: cmake --version
- name: Install python-dev-tools
Expand All @@ -32,14 +32,14 @@ jobs:
run: cmake --build build --config release
- name: Upload Pypi
run: twine upload --skip-existing -u __token__ -p ${{ secrets.PYLEBAI }} build/python/dist/*.whl
windows_python38_release:
runs-on: windows-latest
windows_cp39_release:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.9'
- name: Check cmake
run: cmake --version
- name: Install python-dev-tools
Expand All @@ -51,14 +51,14 @@ jobs:
run: cmake --build build --config release
- name: Upload Pypi
run: twine upload --skip-existing -u __token__ -p ${{ secrets.PYLEBAI }} build/python/dist/*.whl
windows_python39_release:
windows_cp310_release:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.10'
- name: Check cmake
run: cmake --version
- name: Install python-dev-tools
Expand All @@ -70,7 +70,7 @@ jobs:
run: cmake --build build --config release
- name: Upload Pypi
run: twine upload --skip-existing -u __token__ -p ${{ secrets.PYLEBAI }} build/python/dist/*.whl
windows_python311_release:
windows_cp311_release:
runs-on: windows-latest
steps:
- name: Checkout
Expand All @@ -89,11 +89,11 @@ jobs:
run: cmake --build build --config release
- name: Upload Pypi
run: twine upload --skip-existing -u __token__ -p ${{ secrets.PYLEBAI }} build/python/dist/*.whl
windows_python312_release:
windows_cp312_release:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12'
Expand All @@ -108,7 +108,8 @@ jobs:
run: cmake --build build --config release
- name: Upload Pypi
run: twine upload --skip-existing -u __token__ -p ${{ secrets.PYLEBAI }} build/python/dist/*.whl


# pypy3.8
# - name: Publish package
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
Expand Down

0 comments on commit 2bb540e

Please sign in to comment.