mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 22:10:14 +00:00
do not force CMake version for windows (#43916)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/43916 build_hermesc_windows is starting to fail because version 3.14.7 is [not available anymore](https://app.circleci.com/pipelines/github/facebook/react-native/44621/workflows/0c7d3474-ddf4-4138-bdbc-3fec59486f6c/jobs/1452518?invite=true#step-108-735_84) on chocolatey. By removing the version, the system should try to download the latest available. ## Changelog: [Internal] - use the latest cmake on chocolatey for windows Reviewed By: cortinico Differential Revision: D55799078 fbshipit-source-id: d33a3a5f2c45c05e86a0cdf775ed820df5f8b9d4
This commit is contained in:
parent
8c0b5df05a
commit
041bca4227
@ -1035,7 +1035,7 @@ 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 --version 3.14.7 -y
|
||||
choco install --no-progress cmake -y
|
||||
if (-not $?) { throw "Failed to install CMake" }
|
||||
|
||||
cd $Env:HERMES_WS_DIR\icu
|
||||
|
Loading…
Reference in New Issue
Block a user