-
Notifications
You must be signed in to change notification settings - Fork 6k
Use release_build and os dimension consistently. #42012
Changes from 1 commit
54f4323
f70ef37
0c704e1
49a94c5
063cbe6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -259,41 +259,53 @@ targets: | |
bringup: true | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Linux" | ||
properties: | ||
release_build: "true" | ||
config_name: linux_fuchsia | ||
|
||
- name: Linux linux_arm_host_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Linux" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We also use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, this property is being used to detect the drone names, if we use ubuntu it will translate to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done_dimensions are not determining the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My bad based on a local checkout which is not up to date.
|
||
properties: | ||
release_build: "true" | ||
config_name: linux_arm_host_engine | ||
|
||
- name: Linux linux_host_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Linux" | ||
properties: | ||
release_build: "true" | ||
config_name: linux_host_engine | ||
|
||
- name: Linux linux_host_desktop_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Linux" | ||
properties: | ||
release_build: "true" | ||
config_name: linux_host_desktop_engine | ||
|
||
- name: Linux linux_android_aot_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Linux" | ||
properties: | ||
release_build: "true" | ||
config_name: linux_android_aot_engine | ||
|
||
- name: Linux linux_android_debug_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Linux" | ||
properties: | ||
release_build: "true" | ||
config_name: linux_android_debug_engine | ||
|
@@ -302,13 +314,14 @@ targets: | |
recipe: engine_v2/builder | ||
timeout: 60 | ||
properties: | ||
release_build: "true" | ||
config_name: linux_license | ||
clobber: "true" | ||
|
||
- name: Linux linux_web_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 70 | ||
dimensions: | ||
os: "Linux" | ||
properties: | ||
release_build: "true" | ||
config_name: linux_web_engine | ||
|
@@ -317,7 +330,6 @@ targets: | |
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
properties: | ||
release_build: "true" | ||
config_name: linux_unopt | ||
|
||
- name: Linux Web Framework tests | ||
|
@@ -374,7 +386,10 @@ targets: | |
- name: Linux mac_android_aot_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Linux" | ||
properties: | ||
release_build: "true" | ||
config_name: mac_android_aot_engine | ||
|
||
- name: Mac mac_clang_tidy | ||
|
@@ -399,6 +414,8 @@ targets: | |
- name: Mac mac_host_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Mac" | ||
godofredoc marked this conversation as resolved.
Show resolved
Hide resolved
|
||
properties: | ||
release_build: "true" | ||
cpu: arm64 | ||
|
@@ -485,6 +502,8 @@ targets: | |
- name: Mac mac_ios_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Mac" | ||
properties: | ||
release_build: "true" | ||
config_name: mac_ios_engine | ||
|
@@ -500,7 +519,6 @@ targets: | |
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
properties: | ||
release_build: "true" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From the PR description:
I didn't quite follow why we need to remove here. Do we not want to run them against dart_internal any more? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Only builders generating artifacts will be running in dart-internal. Builders like "Mac impeller-cmake-example" are test only and should not run in dart-internal. |
||
cpu: arm64 | ||
config_name: mac_impeller_cmake_example | ||
|
||
|
@@ -526,20 +544,26 @@ targets: | |
- name: Windows windows_android_aot_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Windows" | ||
properties: | ||
release_build: "true" | ||
config_name: windows_android_aot_engine | ||
|
||
- name: Windows windows_host_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Windows" | ||
properties: | ||
release_build: "true" | ||
config_name: windows_host_engine | ||
|
||
- name: Windows windows_arm_host_engine | ||
recipe: engine_v2/engine_v2 | ||
timeout: 60 | ||
dimensions: | ||
os: "Windows" | ||
enabled_branches: | ||
# Don't run this on release branches | ||
- main | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shall this be
drone_dimensions
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated