mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* Add metrics scripts in preparation to move the builder to LUCI. Bug: https://github.com/flutter/flutter/issues/67579 * set -ex to fail scripts inmediately.
17 lines
588 B
Bash
17 lines
588 B
Bash
#!/bin/bash
|
|
#
|
|
# Copyright 2013 The Flutter Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# This script is expected to run from $ENGINE_PATH/src/out/host_release/
|
|
# it is currently used only by automation to collect and upload metrics.
|
|
|
|
set -ex
|
|
|
|
./txt_benchmarks --benchmark_format=json > txt_benchmarks.json
|
|
./fml_benchmarks --benchmark_format=json > fml_benchmarks.json
|
|
./shell_benchmarks --benchmark_format=json > shell_benchmarks.json
|
|
./ui_benchmarks --benchmark_format=json > ui_benchmarks.json
|
|
|