From 77013d11e6483b970af25e13c9b892075742f7e5 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Wed, 2 Jun 2021 13:08:29 -0400 Subject: [PATCH] Cirrus-CI: add some timing info on pkg install failure Sponsored by: The FreeBSD Foundation --- .cirrus-ci/pkg-install.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.cirrus-ci/pkg-install.sh b/.cirrus-ci/pkg-install.sh index ef83e5284078..bcb781191023 100644 --- a/.cirrus-ci/pkg-install.sh +++ b/.cirrus-ci/pkg-install.sh @@ -1,10 +1,11 @@ #!/bin/sh set -e +start_time=$(date +%s) pkg install -y "$@" && exit 0 cat <