Skip to content

Commit

Permalink
Build Windows wheels for multiple Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-easterbrook committed Sep 6, 2021
1 parent db59533 commit 296de9b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 21 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Windows sdist
name: Build Windows wheels
on: workflow_dispatch

jobs:
Expand All @@ -18,16 +18,25 @@ jobs:
with:
name: exiv2-windows
path: libexiv2_*/win32/
retention-days: 1
build:
needs: fetch
runs-on: windows-2019
strategy:
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9']
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Fetch intermediate files
uses: actions/download-artifact@v2
with:
name: exiv2-windows
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- name: Build wheel
run: |
pip3 install setuptools wheel
Expand Down
20 changes: 0 additions & 20 deletions .github/workflows/fetch-exiv2.yml

This file was deleted.

0 comments on commit 296de9b

Please sign in to comment.