File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ name: Check
33env :
44 # Version here should match the one in React Native template and packages/cmake-rn/src/cli.ts
55 NDK_VERSION : 27.1.12297006
6+ # Building Hermes from source doesn't support CMake v4
7+ CMAKE_VERSION : 3.31.6
68 # Enabling the Gradle test on CI (disabled by default because it downloads a lot)
79 ENABLE_GRADLE_TESTS : true
810
@@ -155,7 +157,7 @@ jobs:
155157 - name : Install compatible CMake version
156158 uses : jwlawson/actions-setup-cmake@v2
157159 with :
158- cmake-version : " 3.31.2 "
160+ cmake-version : ${{ env.CMAKE_VERSION }}
159161 - run : rustup target add x86_64-apple-darwin
160162 - run : npm ci
161163 - run : npm run bootstrap
@@ -185,7 +187,7 @@ jobs:
185187 - name : Setup Android SDK
186188 uses : android-actions/setup-android@v3
187189 with :
188- packages : tools platform-tools ndk;${{ env.NDK_VERSION }}
190+ packages : tools platform-tools ndk;${{ env.NDK_VERSION }} cmake;${{ env.CMAKE_VERSION }}
189191 - run : rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi i686-linux-android aarch64-apple-ios-sim
190192 - run : npm ci
191193 - run : npm run bootstrap
You can’t perform that action at this time.
0 commit comments