[ci] remove mac local file #190
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+Upload Windows Python Wheels | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build_windows_wheels: | |
name: Build Windows wheels | |
runs-on: windows-2019 | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
matrix: | |
python_version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', 'pypy3.7', 'pypy3.8', 'pypy3.9'] | |
outputs: | |
perform_pypi_upload: ${{ steps.perform_pypi_upload_check.outputs.perform_pypi_upload }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Update RCS keywords | |
shell: bash | |
run: | | |
printf '\n[filter "rcs-keywords"]\n\tclean = .git_filters/rcs-keywords.clean\n\tsmudge = .git_filters/rcs-keywords.smudge %f\n' >> .git/config | |
rm -rf src/*.c | |
git checkout src/*.c | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
install: >- | |
mingw-w64-x86_64-ninja | |
mingw-w64-x86_64-opencl-icd | |
mingw-w64-x86_64-opencl-headers | |
- name: Put MSYS2_MinGW64 on PATH | |
run: echo "D:/a/_temp/msys64/mingw64/bin" >> $GITHUB_PATH | |
- name: Install OpenCL and xxd | |
run: | | |
vcpkg --triplet=x64-windows install opencl | |
cp 'c:\vcpkg\packages\opencl_x64-windows\bin\OpenCL.dll' 'c:\Windows\System32' | |
choco install -y xxd | |
echo 'C:\ProgramData\chocolatey\lib\xxd\tools\bin' >> $GITHUB_PATH | |
- name: Build Wheels | |
env: | |
OPENCL_ROOT: C:\vcpkg\packages\opencl_x64-windows | |
CMAKE_ARGS: -GNinja | |
run: | | |
cd pmcxcl/ | |
pip install wheel | |
python setup.py bdist_wheel | |
ls dist/ | |
mv dist/ ../ | |
cd ../ | |
- name: Check If the Build Version Exists on PyPI | |
id: perform_pypi_upload_check | |
run: | | |
./.github/check-pypi-upload.sh | |
- name: Prepare Wheels for Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: windows-wheels | |
path: dist/ | |
upload_windows_wheels: | |
needs: build_windows_wheels | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'fangq' && needs.build_windows_wheels.outputs.perform_pypi_upload == 1 && github.event_name != 'pull_request'}} | |
steps: | |
- name: Download Wheels from Build Job | |
uses: actions/download-artifact@v3 | |
with: | |
name: windows-wheels | |
path: dist/ | |
- name: Upload packages to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
verify_metadata: false | |
verbose: true | |
skip_existing: true |