Skip to content

Commit e1e6ced

Browse files
trivial dart-sdk update to trigger engine rebuild for flutter hotfix (flutter#16344)
pick up a dart-sdk merge commit (no source changed) so that a new build of the engine can be hotfixed into flutter stable v1.12.13.
1 parent a677925 commit e1e6ced

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ vars = {
3434
# Dart is: https://github.com/dart-lang/sdk/blob/master/DEPS.
3535
# You can use //tools/dart/create_updated_flutter_deps.py to produce
3636
# updated revision list of existing dependencies.
37-
'dart_revision': 'a4911c63f4f72ba571d6db94de56007b09f4af99',
37+
'dart_revision': '4cc36055d6803b899667feaedc1216a96e9d1c72',
3838

3939
# WARNING: DO NOT EDIT MANUALLY
4040
# The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py

tools/luci/force_luci_build.sh

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/bin/bash
2+
3+
if [[ -z "$1" ]]; then
4+
echo "Usage: $(basename $0) <engine_commit_hash>"
5+
exit 1
6+
fi
7+
8+
ENGINE_COMMIT=$1
9+
BUILDERS=$(curl 'https://ci.chromium.org/p/flutter/g/engine/builders' 2>/dev/null|sed -En 's:.*aria-label="builder buildbucket/luci\.flutter\.prod/([^/]+)".*:\1:p'|sort|uniq)
10+
11+
# This property is only for hotfixes to branches prior to this feature being added
12+
# See https://github.com/flutter/engine/commit/abaac56c602cad3c1b3e41633bbfbe65200a1a3a
13+
NO_FONT_SUBSET="-p build_font_subset=false"
14+
15+
IFS=$'\n'
16+
for BUILDER in $BUILDERS; do
17+
echo "Building $BUILDER..."
18+
bb add \
19+
-commit "https://chromium.googlesource.com/external/github.com/flutter/engine/+/$ENGINE_COMMIT" \
20+
"flutter/prod/$BUILDER" \
21+
$NO_FONT_SUBSET
22+
sleep 1
23+
done

0 commit comments

Comments
 (0)