From 0b6650479b30145bf7ac4a120d5d15d5960b81f7 Mon Sep 17 00:00:00 2001 From: Blake Friedman Date: Fri, 6 Dec 2024 10:49:10 +0000 Subject: [PATCH] Do not install CMake on Windows machine This replicates a fix in 00d5caee992. 0.75 hadn't factored this out into a separate action. --- .circleci/configurations/jobs.yml | 3 --- .github/workflows/nightly.yml | 3 --- .github/workflows/publish-release.yml | 3 --- .github/workflows/test-all.yml | 3 --- 4 files changed, 12 deletions(-) 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 [...]