forked from shorebirdtech/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Linux fuchsia engine v2 config. (flutter#41759)
Engine V2 configuration for fuchsia builds. [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
- Loading branch information
1 parent
ad382c1
commit d9184ce
Showing
2 changed files
with
213 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,205 @@ | ||
{ | ||
"builds": [ | ||
{ | ||
"archives": [], | ||
"drone_dimensions": [ | ||
"device_type=none", | ||
"os=Linux" | ||
], | ||
"gclient_variables": { | ||
"download_android_deps": false | ||
}, | ||
"gn": [ | ||
"--fuchsia", | ||
"--fuchsia-cpu", | ||
"arm64", | ||
"--runtime-mode", | ||
"profile" | ||
], | ||
"name": "fuchsia_profile_arm64", | ||
"ninja": { | ||
"config": "fuchsia_profile_arm64", | ||
"targets": [ | ||
"flutter/shell/platform/fuchsia:fuchsia" | ||
] | ||
} | ||
}, | ||
{ | ||
"archives": [], | ||
"drone_dimensions": [ | ||
"device_type=none", | ||
"os=Linux" | ||
], | ||
"gclient_variables": { | ||
"download_android_deps": false | ||
}, | ||
"gn": [ | ||
"--fuchsia", | ||
"--fuchsia-cpu", | ||
"arm64", | ||
"--runtime-mode", | ||
"release" | ||
], | ||
"name": "fuchsia_release_arm64", | ||
"ninja": { | ||
"config": "fuchsia_release_arm64", | ||
"targets": [ | ||
"flutter/shell/platform/fuchsia:fuchsia" | ||
] | ||
} | ||
}, | ||
{ | ||
"archives": [], | ||
"drone_dimensions": [ | ||
"device_type=none", | ||
"os=Linux" | ||
], | ||
"gclient_variables": { | ||
"download_android_deps": false | ||
}, | ||
"gn": [ | ||
"--fuchsia", | ||
"--fuchsia-cpu", | ||
"arm64", | ||
"--runtime-mode", | ||
"debug", | ||
"--no-lto" | ||
], | ||
"name": "fuchsia_debug_arm64", | ||
"ninja": { | ||
"config": "fuchsia_debug_arm64", | ||
"targets": [ | ||
"flutter/shell/platform/fuchsia:fuchsia", | ||
"fuchsia_tests" | ||
] | ||
} | ||
}, | ||
{ | ||
"drone_dimensions": [ | ||
"device_type=none", | ||
"os=Linux" | ||
], | ||
"gclient_variables": { | ||
"download_android_deps": false | ||
}, | ||
"gn": [ | ||
"--fuchsia", | ||
"--fuchsia-cpu", | ||
"x64", | ||
"--runtime-mode", | ||
"profile" | ||
], | ||
"name": "fuchsia_profile_x64", | ||
"ninja": { | ||
"config": "fuchsia_profile_x64", | ||
"targets": [ | ||
"flutter/shell/platform/fuchsia:fuchsia" | ||
] | ||
} | ||
}, | ||
{ | ||
"drone_dimensions": [ | ||
"device_type=none", | ||
"os=Linux" | ||
], | ||
"gclient_variables": { | ||
"download_android_deps": false | ||
}, | ||
"gn": [ | ||
"--fuchsia", | ||
"--fuchsia-cpu", | ||
"x64", | ||
"--runtime-mode", | ||
"release" | ||
], | ||
"name": "fuchsia_release_x64", | ||
"ninja": { | ||
"config": "fuchsia_release_x64", | ||
"targets": [ | ||
"flutter/shell/platform/fuchsia:fuchsia" | ||
] | ||
} | ||
}, | ||
{ | ||
"drone_dimensions": [ | ||
"device_type=none", | ||
"os=Linux" | ||
], | ||
"gclient_variables": { | ||
"download_android_deps": false | ||
}, | ||
"gn": [ | ||
"--fuchsia", | ||
"--fuchsia-cpu", | ||
"x64", | ||
"--runtime-mode", | ||
"debug", | ||
"--no-lto" | ||
], | ||
"name": "fuchsia_debug_x64", | ||
"ninja": { | ||
"config": "fuchsia_debug_x64", | ||
"targets": [ | ||
"flutter/shell/platform/fuchsia:fuchsia", | ||
"fuchsia_tests" | ||
] | ||
} | ||
} | ||
], | ||
"generators": { | ||
"tasks": [ | ||
{ | ||
"name": "Upload fuchsia artifacts", | ||
"parameters": [ | ||
"--engine-version", | ||
"HEAD", | ||
"--skip-build" | ||
], | ||
"script": "flutter/tools/fuchsia/build_fuchsia_artifacts.py", | ||
"language": "python3" | ||
}, | ||
{ | ||
"name": "Upload to CIPD for arch: arm64", | ||
"parameters": [ | ||
"--engine-version", | ||
"HEAD", | ||
"--target-arch", | ||
"arm64", | ||
"--out-dir", | ||
"/b/s/w/ir/x/w/recipe_cleanup/tmppqs4ecj7", | ||
"--symbol-dirs", | ||
"out/fuchsia_debug_arm64/.build-id", | ||
"out/fuchsia_profile_arm64/.build-id", | ||
"out/fuchsia_release_arm64/.build-id" | ||
], | ||
"script": "flutter/tools/fuchsia/merge_and_upload_debug_symbols.py", | ||
"language": "python3" | ||
}, | ||
{ | ||
"name": "Upload to CIPD for arch: x64", | ||
"parameters": [ | ||
"--engine-version", | ||
"HEAD", | ||
"--target-arch", | ||
"x64", | ||
"--out-dir", | ||
"/b/s/w/ir/x/w/recipe_cleanup/tmppqs4ecj7", | ||
"--symbol-dirs", | ||
"out/fuchsia_debug_x64/.build-id", | ||
"out/fuchsia_profile_x64/.build-id", | ||
"out/fuchsia_release_x64/.build-id" | ||
], | ||
"script": "flutter/tools/fuchsia/merge_and_upload_debug_symbols.py", | ||
"language": "python3" | ||
}, | ||
{ | ||
"name": "Verify-export-symbols-release-binaries", | ||
"parameters": [ | ||
"src/out" | ||
], | ||
"script": "flutter/testing/symbols/verify_exported.dart", | ||
"language": "dart" | ||
} | ||
] | ||
} | ||
} |