-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GHA] Set SSL_CERT_FILE for model downloading (#21668)
* [GHA] Set SSL_CERT_FILE for model downloading * Run Win CC in precommits * Move setting SSL_CERT_FILE before calling CMake * Set SSL_CERT_FILE for model downloading in windows.yml * Wording * Revert "Run Win CC in precommits" This reverts commit 94126aa.
- Loading branch information
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,6 +113,9 @@ jobs: | |
# For running Paddle frontend unit tests | ||
# python3 -m pip install -r ${{ env.OPENVINO_REPO }}/src/frontends/paddle/tests/requirements.txt | ||
# For getting rid of SSL issues during model downloading for unit tests | ||
python3 -m pip install certifi | ||
- name: Install sccache | ||
uses: mozilla-actions/[email protected] | ||
with: | ||
|
@@ -128,6 +131,9 @@ jobs: | |
- name: Configure Developer Command Prompt for Microsoft Visual C++ | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
|
||
- name: Set SSL_CERT_FILE for model downloading for unit tests | ||
run: echo SSL_CERT_FILE=$(python3 -m certifi) >> $env:GITHUB_ENV | ||
|
||
- name: CMake configure | ||
run: | | ||
cmake -G "${{ env.CMAKE_GENERATOR }}" ` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters