mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
ba9d78e0d2
Other files.
22 lines
551 B
Bash
Executable file
22 lines
551 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Copyright 2021-2024 New Vector Ltd.
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Please see LICENSE in the repository root for full details.
|
|
|
|
if ! command -v gradle-profiler &> /dev/null
|
|
then
|
|
echo "gradle-profiler could not be found https://github.com/gradle/gradle-profiler"
|
|
exit
|
|
fi
|
|
|
|
gradle-profiler \
|
|
--benchmark \
|
|
--project-dir . \
|
|
--scenario-file tools/benchmark/benchmark.profile \
|
|
--output-dir benchmark-out/output \
|
|
--gradle-user-home benchmark-out/gradle-home \
|
|
--warmups 3 \
|
|
--iterations 3 \
|
|
$1
|