diff options
author | Denis Ovsienko <denis@ovsienko.info> | 2020-09-03 14:25:53 +0100 |
---|---|---|
committer | Denis Ovsienko <denis@ovsienko.info> | 2020-09-03 14:51:52 +0100 |
commit | 54b5db3dde658894be730b15480f9b6e27b717a0 (patch) | |
tree | 49ee33485095ae624cbeb3f12c6ddd4b844abe55 /.cirrus.yml | |
parent | 6b1a867b8345d55aa91ea0a525d083a9e9d3a150 (diff) | |
download | tcpdump-54b5db3dde658894be730b15480f9b6e27b717a0.tar.gz |
Cirrus CI: Fix the FreeBSD 13 task. [skip travis] [skip appveyor]
Use FreeBSD 11.4-RELEASE and 12.1-RELEASE instead of 11.3-CURRENT and
12.1-CURRENT, this allows to drop "pkg update -f", which was a
workaround for 11.3-CURRENT (see commit 96c4db3), and which had later
broken in 13.0-CURRENT. Relates to cirruslabs/cirrus-ci-docs#695.
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 1f7abc4e..c512a4bf 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -6,15 +6,13 @@ env: task: freebsd_instance: image_family: $IMAGE_FAMILY - allow_failures: $IMAGE_FAMILY == "freebsd-13-0-snap" # currently broken env: matrix: - - IMAGE_FAMILY: freebsd-11-3-snap - - IMAGE_FAMILY: freebsd-12-1-snap + - IMAGE_FAMILY: freebsd-11-4 + - IMAGE_FAMILY: freebsd-12-1 - IMAGE_FAMILY: freebsd-13-0-snap script: - freebsd-version - - pkg update -f - pkg install -qy git autoconf - (cd .. && git clone --depth ${CIRRUS_CLONE_DEPTH} --branch=master --quiet git://github.com/the-tcpdump-group/libpcap.git && cd libpcap && ./configure --prefix=/tmp && make -s) - touch .devel |