File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,16 @@ jobs:
188
188
done
189
189
}
190
190
retry cmake --build . --config $BUILD_TYPE --target package $CMAKE_BUILD_EXTRA
191
+ # As of 05/17/21 GitHub Virtual Environments changed their "Ubuntu 18.04.5 LTS" image to include two versions of CMake for Android
192
+ # https://github.com/actions/virtual-environments/blob/ubuntu18/20210517.1/images/linux/Ubuntu1804-README.md
193
+ # Removing 3.18.1 version of CMake as its not compatible with our Android build.
194
+ # It will fall back to 3.10.2 which is already installed
195
+ - name : Nuke CMake 3.18.1-g262b901
196
+ if : matrix.build_type == 'android'
197
+ shell : bash
198
+ working-directory : ${{runner.workspace}}/vircadia
199
+ run : |
200
+ /usr/local/lib/android/sdk/tools/bin/sdkmanager --uninstall 'cmake;3.18.1'
191
201
- name : Build for Android + Quest
192
202
if : matrix.build_type == 'android'
193
203
shell : bash
You can’t perform that action at this time.
0 commit comments