From: Ilya Shipitsin Date: Tue, 11 Feb 2020 08:19:22 +0000 (+0500) Subject: BUILD: cirrus-ci: workaround "pkg install" bug X-Git-Tag: v2.2-dev3~92 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1726dab7890e49d37b344b3aec454c2cae80ba9c;p=thirdparty%2Fhaproxy.git BUILD: cirrus-ci: workaround "pkg install" bug there's a bug https://github.com/freebsd/pkg/issues/902 adding "pkg update -f && pkg upgrade -y" is workaround. --- diff --git a/.cirrus.yml b/.cirrus.yml index d528083585..5c7c8403dd 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -6,7 +6,7 @@ FreeBSD_task: image_family: freebsd-11-3-snap only_if: $CIRRUS_BRANCH =~ 'master|next' install_script: - - pkg install -y openssl git gmake lua53 socat + - pkg update -f && pkg upgrade -y && pkg install -y openssl git gmake lua53 socat script: - git clone https://github.com/VTest/VTest.git ../vtest - make -C ../vtest