Skip to content

Commit 0753a19

Browse files
isapegozstan
authored andcommitted
IGNITE-26791 Fix pyignite_dbapi workflow (#6828)
1 parent 0ed2eab commit 0753a19

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/python_dbapi_wheels.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: "Build Python DB API Driver Wheels"
22

33
on:
4+
push:
5+
paths:
6+
- 'modules/platforms/python/**'
7+
48
workflow_dispatch:
59

610
jobs:
@@ -71,13 +75,12 @@ jobs:
7175
CIBW_BEFORE_ALL: yum -y install openssl-devel
7276
CIBW_BUILD_VERBOSITY: 1
7377

74-
- name: Install Winget
75-
if: runner.os == 'Windows'
76-
uses: Cyberboss/install-winget@v1
77-
78-
- name: Install OpenSSL on Windows
78+
- name: Install OpenSSL (Windows)
7979
if: runner.os == 'Windows'
80-
run: winget install --id=ShiningLight.OpenSSL.Dev -e --accept-source-agreements --disable-interactivity
80+
shell: powershell
81+
run: |
82+
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
83+
vcpkg install openssl:x64-windows-static-md
8184
8285
- name: Build wheels Windows
8386
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)