Page MenuHomeFreeBSD

Cirrus-CI: retry pkg installation on failure
ClosedPublic

Authored by emaste on Jun 2 2021, 3:09 PM.
Tags
None
Referenced Files
F80199758: D30613.diff
Fri, Mar 29, 4:39 AM
Unknown Object (File)
Jan 13 2024, 9:28 AM
Unknown Object (File)
Dec 24 2023, 10:26 AM
Unknown Object (File)
Dec 24 2023, 10:05 AM
Unknown Object (File)
Dec 24 2023, 10:05 AM
Unknown Object (File)
Dec 24 2023, 10:05 AM
Unknown Object (File)
Dec 24 2023, 1:25 AM
Unknown Object (File)
Dec 20 2023, 6:21 AM
Subscribers

Details

Summary

Pkg installation failed reasonably frequently, always at:

[62/104] Fetching jpeg-turbo-2.0.6.txz: .......... done
pkg: http://pkgmir.geo.freebsd.org/FreeBSD:13:amd64/quarterly/All/jbigkit-2.1_1.txz: No route to host

Move pkg installation to a script and retry once upon failure.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

emaste requested review of this revision.Jun 2 2021, 3:09 PM
emaste created this revision.
emaste added inline comments.
.cirrus-ci/pkg-install.sh
14

stray "

.cirrus-ci/pkg-install.sh
4

perhaps this list should continue to live in .cirrus.yml and be passed to this script -- will update

Put pkg list back in .cirrus.yml

A version of this worked:
https://cirrus-ci.com/task/6615935889965056

pkg: http://pkgmir.geo.freebsd.org/FreeBSD:13:amd64/quarterly/All/jbigkit-2.1_1.txz: No route to host
pkg install failed

dmesg tail:
random: unblocking device.
intsmb0: <Intel PIIX4 SMBUS Interface> irq 9 at device 1.3 on pci0
intsmb0: Could not allocate I/O space
device_attach: intsmb0 attach returned 6
vtrnd0: <VirtIO Entropy Adapter> on virtio_pci2
random: registering fast source VirtIO Entropy Adapter
lo0: link state changed to UP
debugnet_any_ifnet_update: Bad dn_init result from vtnet0 (ifp 0xfffff80003eff800), ignoring.
debugnet_any_ifnet_update: Bad dn_init result from vtnet0 (ifp 0xfffff80003eff800), ignoring.
vtnet0: link state changed to UP

trying again
Updating FreeBSD repository catalogue...

dmesg snippet looks like messages from boot though, so probably no link flap at this time
debugnet_any_ifnet_update: Bad dn_init result from vtnet0 (ifp 0xfffff80003eff800), ignoring. are curious

jrtc27 added inline comments.
.cirrus-ci/pkg-install.sh
2

Maybe set -e for future safety? As it stands the script is fine wrt exit codes, but seems wise to add it.

@jrtc27 is right for the long term...

This revision is now accepted and ready to land.Jun 3 2021, 1:59 AM
In D30613#687823, @imp wrote:

@jrtc27 is right for the long term...

As much as I want to say "this would ideally be relatively temporary" we all know how temporary things end up... :)

This revision was automatically updated to reflect the committed changes.