Skip to content

Commit 0443c2a

Browse files
cipolleschifacebook-github-bot
authored andcommitted
Fix: Remove installation of Python 3 in CI for Windows (#36596)
Summary: We used to have to install python 3 on windows. Starting from yesterday (22/03/2023) the `build_hermesc_window` job started failing because Python3 is already installed on the default machine. ## Changelog: [INTERNAL] [FIXED] - Skip installing python 3 on Windows as it's already there. Pull Request resolved: #36596 Test Plan: CircleCI must be green Reviewed By: hoxyq Differential Revision: D44330936 Pulled By: cipolleschi fbshipit-source-id: b58190f707be309d919aceb80af717046c9476b4
1 parent dd6d57e commit 0443c2a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.circleci/config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,8 +1368,6 @@ jobs:
13681368
if (-not(Test-Path -Path $Env:HERMES_WS_DIR\win64-bin\hermesc.exe)) {
13691369
choco install --no-progress cmake --version 3.14.7
13701370
if (-not $?) { throw "Failed to install CMake" }
1371-
choco install --no-progress python3
1372-
if (-not $?) { throw "Failed to install Python" }
13731371
13741372
cd $Env:HERMES_WS_DIR\icu
13751373
# If Invoke-WebRequest shows a progress bar, it will fail with

0 commit comments

Comments
 (0)