Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 92 additions & 4 deletions ci/builders/linux_clang_tidy.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,65 @@
],
"tests": [
{
"name": "test: lint host_debug",
"name": "test: lint host_debug 0",
"recipe": "engine_v2/tester_engine",
"drone_dimensions": [
"device_type=none",
"os=Linux",
"cores=32"
],
"gclient_variables": {
"download_android_deps": false
},
"dependencies": [
"host_debug"
],
"tasks": [
{
"name": "test: lint host_debug",
"parameters": [
"--variant",
"host_debug",
"--lint-all",
"--shard-id=0",
"--shard-variants=host_debug,host_debug,host_debug"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]
},
{
"name": "test: lint host_debug 1",
"recipe": "engine_v2/tester_engine",
"drone_dimensions": [
"device_type=none",
"os=Linux",
"cores=32"
],
"gclient_variables": {
"download_android_deps": false
},
"dependencies": [
"host_debug"
],
"tasks": [
{
"name": "test: lint host_debug",
"parameters": [
"--variant",
"host_debug",
"--lint-all",
"--shard-id=1",
"--shard-variants=host_debug,host_debug,host_debug"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]
},
{
"name": "test: lint host_debug 2",
"recipe": "engine_v2/tester_engine",
"drone_dimensions": [
"device_type=none",
Expand All @@ -58,10 +116,40 @@
"--variant",
"host_debug",
"--lint-all",
"--shard-id=1",
"--shard-variants=android_debug_arm64"
"--shard-id=2",
"--shard-variants=host_debug,host_debug,host_debug"
],
"max_attempts": 1,
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]
},
{
"name": "test: lint host_debug 3",
"recipe": "engine_v2/tester_engine",
"drone_dimensions": [
"device_type=none",
"os=Linux",
"cores=32"
],
"gclient_variables": {
"download_android_deps": false
},
"dependencies": [
"host_debug",
"android_debug_arm64"
],
"tasks": [
{
"name": "test: lint host_debug",
"parameters": [
"--variant",
"host_debug",
"--lint-all",
"--shard-id=3",
"--shard-variants=host_debug,host_debug,host_debug"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]
Expand Down
105 changes: 100 additions & 5 deletions ci/builders/mac_clang_tidy.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
],
"tests": [
{
"name": "test: lint host_debug",
"name": "test: lint host_debug 0",
"recipe": "engine_v2/tester_engine",
"drone_dimensions": [
"device_type=none",
Expand All @@ -57,8 +57,7 @@
"download_android_deps": false
},
"dependencies": [
"host_debug",
"ios_debug_sim"
"host_debug"
],
"contexts": [
"osx_sdk"
Expand All @@ -70,14 +69,110 @@
"--variant",
"host_debug",
"--lint-all",
"--shard-id=1",
"--shard-variants=ios_debug_sim"
"--shard-id=0",
"--shard-variants=host_debug,host_debug,host_debug"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]
},
{
"name": "test: lint host_debug 1",
"recipe": "engine_v2/tester_engine",
"drone_dimensions": [
"device_type=none",
"os=Mac",
"cpu=arm64"
],
"gclient_variables": {
"download_android_deps": false
},
"dependencies": [
"host_debug"
],
"contexts": [
"osx_sdk"
],
"tasks": [
{
"name": "test: lint host_debug",
"parameters": [
"--variant",
"host_debug",
"--lint-all",
"--shard-id=1",
"--shard-variants=host_debug,host_debug,host_debug"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]
},
{
"name": "test: lint host_debug 2",
"recipe": "engine_v2/tester_engine",
"drone_dimensions": [
"device_type=none",
"os=Mac",
"cpu=arm64"
],
"gclient_variables": {
"download_android_deps": false
},
"dependencies": [
"host_debug"
],
"contexts": [
"osx_sdk"
],
"tasks": [
{
"name": "test: lint host_debug",
"parameters": [
"--variant",
"host_debug",
"--lint-all",
"--shard-id=2",
"--shard-variants=host_debug,host_debug,host_debug"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]
},
{
"name": "test: lint host_debug 3",
"recipe": "engine_v2/tester_engine",
"drone_dimensions": [
"device_type=none",
"os=Mac",
"cpu=arm64"
],
"gclient_variables": {
"download_android_deps": false
},
"dependencies": [
"host_debug"
],
"contexts": [
"osx_sdk"
],
"tasks": [
{
"name": "test: lint host_debug",
"parameters": [
"--variant",
"host_debug",
"--lint-all",
"--shard-id=3",
"--shard-variants=host_debug,host_debug,host_debug"
],
"max_attempts": 1,
"script": "flutter/ci/lint.sh"
}
]
},
{
"name": "test: lint ios_debug_sim",
"recipe": "engine_v2/tester_engine",
Expand Down