Don't install xcode when doing local_engine web builds on mac. (#162164)

We don't actually need Xcode installed to do web builds on a Mac, since
it uses emscripten. We can specify to skip the install via the property
added here: https://flutter-review.googlesource.com/c/recipes/+/62500
This commit is contained in:
Jackson Gardner 2025-01-24 18:03:09 -08:00 committed by GitHub
parent 9cc132d4c2
commit fdd7ebc59f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1004,7 +1004,7 @@
"name": "macos/wasm_release", "name": "macos/wasm_release",
"drone_dimensions": [ "drone_dimensions": [
"device_type=none", "device_type=none",
"os=Mac" "os=Mac-13|Mac-14"
], ],
"gclient_variables": { "gclient_variables": {
"download_android_deps": false, "download_android_deps": false,
@ -1023,13 +1023,18 @@
"flutter/web_sdk:flutter_web_sdk_archive" "flutter/web_sdk:flutter_web_sdk_archive"
] ]
}, },
"properties": {
"$flutter/osx_sdk": {
"skip_xcode_install": true
}
},
"cas_archive": false "cas_archive": false
}, },
{ {
"name": "macos/wasm_debug_unopt", "name": "macos/wasm_debug_unopt",
"drone_dimensions": [ "drone_dimensions": [
"device_type=none", "device_type=none",
"os=Mac" "os=Mac-13|Mac-14"
], ],
"gclient_variables": { "gclient_variables": {
"download_android_deps": false, "download_android_deps": false,
@ -1049,6 +1054,11 @@
"flutter/web_sdk:flutter_web_sdk_archive" "flutter/web_sdk:flutter_web_sdk_archive"
] ]
}, },
"properties": {
"$flutter/osx_sdk": {
"skip_xcode_install": true
}
},
"cas_archive": false "cas_archive": false
} }
] ]