This is an automated email from the ASF dual-hosted git repository.
isapego pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 5210705b73f IGNITE-26791 Fix pyignite_dbapi workflow (#6828)
5210705b73f is described below
commit 5210705b73f58e4765e1945c2776f5f4b79c247e
Author: Igor Sapego <[email protected]>
AuthorDate: Tue Oct 21 17:38:08 2025 +0400
IGNITE-26791 Fix pyignite_dbapi workflow (#6828)
---
.github/workflows/python_dbapi_wheels.yml | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/python_dbapi_wheels.yml
b/.github/workflows/python_dbapi_wheels.yml
index e8b37305f0a..da05d21ffd8 100644
--- a/.github/workflows/python_dbapi_wheels.yml
+++ b/.github/workflows/python_dbapi_wheels.yml
@@ -1,6 +1,10 @@
name: "Build Python DB API Driver Wheels"
on:
+ push:
+ paths:
+ - 'modules/platforms/python/**'
+
workflow_dispatch:
jobs:
@@ -71,13 +75,12 @@ jobs:
CIBW_BEFORE_ALL: yum -y install openssl-devel
CIBW_BUILD_VERBOSITY: 1
- - name: Install Winget
- if: runner.os == 'Windows'
- uses: Cyberboss/install-winget@v1
-
- - name: Install OpenSSL on Windows
+ - name: Install OpenSSL (Windows)
if: runner.os == 'Windows'
- run: winget install --id=ShiningLight.OpenSSL.Dev -e
--accept-source-agreements --disable-interactivity
+ shell: powershell
+ run: |
+ echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath
$env:GITHUB_ENV -Append
+ vcpkg install openssl:x64-windows-static-md
- name: Build wheels Windows
if: runner.os == 'Windows'