Update build_wheel.yml #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Flye Wheel for Python3 on Windows | |
on: | |
push: | |
branches: [ "flye" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: UCRT64 | |
update: true | |
install: >- | |
git | |
make | |
mingw-w64-ucrt-x86_64-toolchain | |
mingw-w64-ucrt-x86_64-dlfcn | |
mingw-w64-ucrt-x86_64-python3 | |
mingw-w64-ucrt-x86_64-python3-pip | |
- uses: actions/checkout@v3 | |
- name: build | |
run: pip3 wheel . -v | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: flye-wheel | |
path: ./*.whl |