From d7d5e48de5d6775f72fcfec67a077a47618da313 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Wed, 3 Mar 2021 18:23:38 +0100 Subject: CI: disable FreeBSD / Cirrus builds They started to fail a few weeks ago with the following error ``` ./autogen.sh Running aclocal autom4te-2.69: need GNU m4 1.4 or later: /usr/local/bin/gm4 aclocal: error: autom4te failed with exit status: 1 Something went wrong, giving up! ``` --- .cirrus.yml | 29 ----------------------------- .cirrus.yml.disabled | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 29 deletions(-) delete mode 100644 .cirrus.yml create mode 100644 .cirrus.yml.disabled diff --git a/.cirrus.yml b/.cirrus.yml deleted file mode 100644 index 086e6875..00000000 --- a/.cirrus.yml +++ /dev/null @@ -1,29 +0,0 @@ -# Cirrus CI configuration - -task: - name: FreeBSD - freebsd_instance: - cpu: 4 - matrix: - image: freebsd-12-1-release-amd64 -# image: freebsd-11-2-release-amd64 -# image: freebsd-10-4-release-amd64 - - env: - CIRRUS_CLONE_DEPTH: 1 - MAKE_FLAGS: -j 4 - - # Disable cache: its upload can take up to 30 minutes! - #cache: - # folder: $HOME/.ccache - - pkginstall_script: - - pkg install -y autoconf automake libtool pkgconf sqlite3 tiff ccache gmake - configure_script: - - ./autogen.sh - - ./configure --disable-static - compile_script: - - gmake $(MAKE_FLAGS) - test_script: - - gmake check $(MAKE_FLAGS) - diff --git a/.cirrus.yml.disabled b/.cirrus.yml.disabled new file mode 100644 index 00000000..086e6875 --- /dev/null +++ b/.cirrus.yml.disabled @@ -0,0 +1,29 @@ +# Cirrus CI configuration + +task: + name: FreeBSD + freebsd_instance: + cpu: 4 + matrix: + image: freebsd-12-1-release-amd64 +# image: freebsd-11-2-release-amd64 +# image: freebsd-10-4-release-amd64 + + env: + CIRRUS_CLONE_DEPTH: 1 + MAKE_FLAGS: -j 4 + + # Disable cache: its upload can take up to 30 minutes! + #cache: + # folder: $HOME/.ccache + + pkginstall_script: + - pkg install -y autoconf automake libtool pkgconf sqlite3 tiff ccache gmake + configure_script: + - ./autogen.sh + - ./configure --disable-static + compile_script: + - gmake $(MAKE_FLAGS) + test_script: + - gmake check $(MAKE_FLAGS) + -- cgit v1.2.3