diff --git a/.circleci/configurations/jobs.yml b/.circleci/configurations/jobs.yml index 4072fd09925646..0aa04cecf2f2ed 100644 --- a/.circleci/configurations/jobs.yml +++ b/.circleci/configurations/jobs.yml @@ -1028,9 +1028,6 @@ jobs: name: Build HermesC for Windows command: | if (-not(Test-Path -Path $Env:HERMES_WS_DIR\win64-bin\hermesc.exe)) { - choco install --no-progress cmake -y - if (-not $?) { throw "Failed to install CMake" } - cd $Env:HERMES_WS_DIR\icu # If Invoke-WebRequest shows a progress bar, it will fail with # Win32 internal error "Access is denied" 0x5 occurred [...] diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index d9a518749972d7..1ad358019480e7 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -469,9 +469,6 @@ jobs: - name: Build HermesC for Windows run: | if (-not(Test-Path -Path $Env:HERMES_WS_DIR\win64-bin\hermesc.exe)) { - choco install --no-progress cmake --version 3.14.7 - if (-not $?) { throw "Failed to install CMake" } - cd $Env:HERMES_WS_DIR\icu # If Invoke-WebRequest shows a progress bar, it will fail with # Win32 internal error "Access is denied" 0x5 occurred [...] diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index bacde615c4cf4e..a4dfa14ef53ae2 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -466,9 +466,6 @@ jobs: - name: Build HermesC for Windows run: | if (-not(Test-Path -Path $Env:HERMES_WS_DIR\win64-bin\hermesc.exe)) { - choco install --no-progress cmake --version 3.14.7 - if (-not $?) { throw "Failed to install CMake" } - cd $Env:HERMES_WS_DIR\icu # If Invoke-WebRequest shows a progress bar, it will fail with # Win32 internal error "Access is denied" 0x5 occurred [...] diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml index 1e93df9126454b..24720665aad0fd 100644 --- a/.github/workflows/test-all.yml +++ b/.github/workflows/test-all.yml @@ -543,9 +543,6 @@ jobs: - name: Build HermesC for Windows run: | if (-not(Test-Path -Path $Env:HERMES_WS_DIR\win64-bin\hermesc.exe)) { - choco install --no-progress cmake --version 3.14.7 - if (-not $?) { throw "Failed to install CMake" } - cd $Env:HERMES_WS_DIR\icu # If Invoke-WebRequest shows a progress bar, it will fail with # Win32 internal error "Access is denied" 0x5 occurred [...]