Hello, it turned out that FreeBSD image is slightly different from packages. since we cannot change image, let us just suppress that warning.
Cheers, Ilya Shipitcin
From b492635642a9c94e6f59ecb18a147355d408622f Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin <[email protected]> Date: Wed, 26 Feb 2020 00:57:33 +0500 Subject: [PATCH] BUILD: cirrus-ci: suppress OS version check when installing packages --- .cirrus.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.cirrus.yml b/.cirrus.yml index 1a07c80c7..86b404782 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -5,6 +5,8 @@ FreeBSD_task: image_family: freebsd-12-1-snap image_family: freebsd-11-3-snap only_if: $CIRRUS_BRANCH =~ 'master|next' + env: + IGNORE_OSVERSION: yes # supress package installation error on FreeBSD-13 install_script: - pkg update -f && pkg upgrade -y && pkg install -y openssl git gmake lua53 socat script: -- 2.24.1

