Skip to content

Commit 34d83ef

Browse files
GHA: fixed build on Windows (openvinotoolkit#1694)
1 parent 7ee5cab commit 34d83ef

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

.github/workflows/causal_lm_cpp.yml

+4
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,8 @@ jobs:
256256
call .\ov\setupvars.bat
257257
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
258258
cmake --build ./build/ --config Release -j
259+
env:
260+
CMAKE_TLS_VERIFY: 0
259261
- name: Download and convert model
260262
run: |
261263
call .\ov\setupvars.bat
@@ -974,6 +976,8 @@ jobs:
974976
call .\ov\setupvars.bat
975977
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
976978
cmake --build ./build/ --config Release -j
979+
env:
980+
CMAKE_TLS_VERIFY: 0
977981
- name: Download and convert and model
978982
run: |
979983
call .\ov\setupvars.bat

.github/workflows/lcm_dreamshaper_cpp.yml

+2
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@ jobs:
127127
. "${{ env.OV_INSTALL_DIR }}/setupvars.ps1"
128128
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ${{ env.build_dir }}
129129
cmake --build ${{ env.build_dir }} --config Release --target text2image image2image inpainting heterogeneous_stable_diffusion lora_text2image py_openvino_genai --parallel
130+
env:
131+
CMAKE_TLS_VERIFY: 0
130132

131133
- name: Install python dependencies
132134
run: |

.github/workflows/stable_diffusion_1_5_cpp.yml

+2
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,8 @@ jobs:
184184
. "${{ env.OV_INSTALL_DIR }}/setupvars.ps1"
185185
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ${{ env.build_dir }}
186186
cmake --build ${{ env.build_dir }} --config Release --target text2image image2image inpainting heterogeneous_stable_diffusion lora_text2image py_openvino_genai --parallel
187+
env:
188+
CMAKE_TLS_VERIFY: 0
187189

188190
- name: Create virtual environment
189191
run: python -m venv openvino_sd_cpp

.github/workflows/windows.yml

+8
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,8 @@ jobs:
235235
. "${{ env.OV_INSTALL_DIR }}/setupvars.ps1"
236236
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
237237
cmake --build ./build/ --config Release --parallel --verbose
238+
env:
239+
CMAKE_TLS_VERIFY: 0
238240

239241
- name: Test bindings
240242
run: |
@@ -302,6 +304,8 @@ jobs:
302304
. "${{ env.OV_INSTALL_DIR }}/setupvars.ps1"
303305
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
304306
cmake --build ./build/ --config Release --target py_openvino_genai --parallel --verbose
307+
env:
308+
CMAKE_TLS_VERIFY: 0
305309

306310
- name: Test bindings
307311
run: |
@@ -374,6 +378,8 @@ jobs:
374378
. "${{ env.OV_INSTALL_DIR }}/setupvars.ps1"
375379
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
376380
cmake --build ./build/ --config Release --target py_openvino_genai --parallel --verbose
381+
env:
382+
CMAKE_TLS_VERIFY: 0
377383

378384
- name: Test bindings
379385
run: |
@@ -437,6 +443,8 @@ jobs:
437443
. "${{ env.OV_INSTALL_DIR }}/setupvars.ps1"
438444
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -S ./ -B ./build/
439445
cmake --build ./build/ --config ${{ matrix.build-type }} --target package -j
446+
env:
447+
CMAKE_TLS_VERIFY: 0
440448

441449
- name: Build and Install dependencies
442450
run: |

0 commit comments

Comments
 (0)