Skip to content

Commit

Permalink
Update the mac_host_engine configuration. (#35096)
Browse files Browse the repository at this point in the history
  • Loading branch information
godofredoc authored Aug 2, 2022
1 parent d10f57b commit 6724561
Showing 1 changed file with 31 additions and 4 deletions.
35 changes: 31 additions & 4 deletions ci/builders/mac_host_engine.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@
"config": "mac_debug_arm64",
"targets": [
"flutter/build/archives:dart_sdk_archive",
"flutter/build/archives:archive_gen_snapshot"
"flutter/build/archives:archive_gen_snapshot",
"flutter/shell/platform/darwin/macos:zip_macos_flutter_framework"
]
},
"tests": []
Expand Down Expand Up @@ -208,7 +209,8 @@
"ninja": {
"config": "mac_profile_arm64",
"targets": [
"flutter/build/archives:archive_gen_snapshot"
"flutter/build/archives:archive_gen_snapshot",
"flutter/shell/platform/darwin/macos:zip_macos_flutter_framework"
]
},
"tests": []
Expand Down Expand Up @@ -244,11 +246,36 @@
"ninja": {
"config": "mac_release_arm64",
"targets": [
"flutter/build/archives:archive_gen_snapshot"
"flutter/build/archives:archive_gen_snapshot",
"flutter/shell/platform/darwin/macos:zip_macos_flutter_framework"
]
},
"tests": []
}
],
"tests": []
"tests": [],
"generators": {
"tasks": [
{
"name": "Release-FlutterMacOS.framework",
"parameters": [
"--dst",
"out/release",
"--arm64-out-dir",
"out/mac_release_arm64",
"--x64-out-dir",
"out/host_release",
"--dsym",
"--strip"
],
"script": "flutter/sky/tools/create_macos_framework.py"
}
]
},
"archives": [
{
"source": "out/release/FlutterMacOS.dSYM.zip",
"destination": "darwin-x64-release/FlutterMacOS.dSYM.zip"
}
]
}

0 comments on commit 6724561

Please sign in to comment.