diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-09-01 10:13:53 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-09-01 10:13:53 -0400 |
commit | fbbfaa4f449a46cc15c2b60848ff6039f8930081 (patch) | |
tree | 6340d939ffb8e3fd71b383cfeeea2da7713284ff /meta-agl-flutter/conf | |
parent | 13169c3265ba75d783eb3723504298a08e768110 (diff) |
Pin Flutter SDK to ensure reproducible builds
To ensure reproducibility as well as avoid build failures when
Google upstream runs ahead of meta-flutter, set FLUTTER_SDK_TAG to
pin the Flutter SDK components as opposed to the meta-flutter
default of letting them float.
Bug-AGL: SPEC-4545
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: If7543329ba13f87abc0b66080494bd8f1e812642
Diffstat (limited to 'meta-agl-flutter/conf')
-rw-r--r-- | meta-agl-flutter/conf/include/agl-flutter.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-agl-flutter/conf/include/agl-flutter.inc b/meta-agl-flutter/conf/include/agl-flutter.inc index ed5ffa6d..a24400c8 100644 --- a/meta-agl-flutter/conf/include/agl-flutter.inc +++ b/meta-agl-flutter/conf/include/agl-flutter.inc @@ -1,5 +1,5 @@ AGL_FEATURES += "agl-flutter" -# Potentially over-ride Flutter SDK tag here when a release is done -# and pinning is desired. -#FLUTTER_SDK_TAG = "" +# Over-ride Flutter SDK tag to ensure reproducible builds. +# This should be updated as required to match meta-flutter updates. +FLUTTER_SDK_TAG = "3.0.5" |