Skip to content

Commit

Permalink
Update windows build workflow (#585)
Browse files Browse the repository at this point in the history
Use MariaDB Connector/C 3.3.4
  • Loading branch information
methane committed May 7, 2023
1 parent 17c4e46 commit d065827
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
build:
runs-on: windows-latest
env:
CONNECTOR_VERSION: "3.3.1"
CONNECTOR_VERSION: "3.3.4"
steps:

- name: Cache Connector
id: cache-connector
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: c:/mariadb-connector
key: mariadb-connector-c-${{ env.CONNECTOR_VERSION }}-win
Expand All @@ -41,7 +41,7 @@ jobs:
cmake -DCMAKE_INSTALL_PREFIX=c:/mariadb-connector -DCMAKE_INSTALL_COMPONENT=Development -DCMAKE_BUILD_TYPE=Release -P cmake_install.cmake
- name: Checkout mysqlclient
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: mysqlclient

Expand All @@ -58,9 +58,9 @@ jobs:
EOF
cat site.cfg
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.7.0
run: python -m pip install cibuildwheel==2.12.3
- name: Build wheels
working-directory: mysqlclient
env:
Expand All @@ -70,7 +70,7 @@ jobs:
run: "python -m cibuildwheel --prerelease-pythons --output-dir dist"

- name: Upload Wheel
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: win-wheels
path: mysqlclient/dist/*.whl

0 comments on commit d065827

Please sign in to comment.