From 25a9efe99471715e6e35a239e57efee67b48a1e3 Mon Sep 17 00:00:00 2001 From: godofredoc Date: Tue, 16 May 2023 15:11:21 -0700 Subject: [PATCH] Fix drone_dimensions. (#126953) Use drone_dimensions instead of dimensions for builds running on dart-internal. This is required for those builders to select the correct drone type. --- .ci.yaml | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/.ci.yaml b/.ci.yaml index 5bbb9f8f02..daa1c97b7b 100644 --- a/.ci.yaml +++ b/.ci.yaml @@ -347,6 +347,8 @@ targets: firebase_project: master-docs-flutter-dev release_ref: refs/heads/master release_build: "true" + drone_dimensions: + - os=Linux - name: Linux docs_test recipe: flutter/flutter @@ -4833,8 +4835,8 @@ targets: task_name: flutter_packaging tags: > ["framework", "hostonly", "shard", "linux"] - dimensions: - os: "Linux" + drone_dimensions: + - os=Linux - name: Mac flutter_packaging recipe: packaging/packaging @@ -4847,9 +4849,9 @@ targets: task_name: flutter_packaging tags: > ["framework", "hostonly", "shard", "mac"] - dimensions: - cpu: "x86" - os: "Mac" + drone_dimensions: + - os=Mac + - cpu=x86 - name: Mac_arm64 flutter_packaging @@ -4863,9 +4865,9 @@ targets: task_name: flutter_packaging tags: > ["framework", "hostonly", "shard", "mac"] - dimensions: - cpu: "arm64" - os: "Mac" + drone_dimensions: + - os=Mac + - cpu=arm64 - name: Windows flutter_packaging recipe: packaging/packaging @@ -4879,8 +4881,8 @@ targets: task_name: flutter_packaging tags: > ["framework", "hostonly", "shard", "windows"] - dimensions: - os: "Windows" + drone_dimensions: + - os=Windows - name: Linux docs_deploy_beta @@ -4903,8 +4905,8 @@ targets: validation: docs_deploy validation_name: Docs_deploy firebase_project: master-docs-flutter-dev - dimensions: - os: "Linux" + drone_dimensions: + - os=Linux - name: Linux docs_deploy_stable recipe: flutter/flutter @@ -4926,5 +4928,5 @@ targets: validation: docs_deploy validation_name: Docs_deploy firebase_project: docs-flutter-dev - dimensions: - os: "Linux" + drone_dimensions: + - os=Linux