aboutsummaryrefslogblamecommitdiff
path: root/.cirrus-ci/pkg-install.sh
blob: bcb7811910238a3e683163e094e9aa78cb934270 (plain) (tree)
1
2
3
4
5
6
7
8


         
                      


                             
                                                        






               






                                                               
#!/bin/sh
set -e

start_time=$(date +%s)
pkg install -y "$@" && exit 0

cat <<EOF
pkg install failed after $(($(date +%s) - $start_time))s

dmesg tail:
$(dmesg | tail)

trying again
EOF

start_time=$(date +%s)
pkg install -y "$@" && exit 0

cat <<EOF
second pkg install failed after $(($(date +%s) - $start_time))s
EOF
exit 1