FreeBSD CI has been migrated to GitHub Actions. Remove the .cirrus.yml configuration file, and the Makefile.am dist entry.
Assisted-by: Claude Opus 4.6, OpenCode Signed-off-by: Eelco Chaudron <[email protected]> --- .cirrus.yml | 34 ---------------------------------- Makefile.am | 1 - 2 files changed, 35 deletions(-) delete mode 100644 .cirrus.yml diff --git a/.cirrus.yml b/.cirrus.yml deleted file mode 100644 index cfbb0ff4d..000000000 --- a/.cirrus.yml +++ /dev/null @@ -1,34 +0,0 @@ -freebsd_build_task: - - freebsd_instance: - matrix: - image_family: freebsd-13-5 - image_family: freebsd-14-3 - cpu: 4 - memory: 4G - - env: - DEPENDENCIES: automake libtool gmake gcc openssl python3 - PY_DEPS: sphinx|netaddr|pyparsing - matrix: - COMPILER: gcc - COMPILER: clang - - prepare_script: - - sysctl -w kern.coredump=0 - - pkg update -f -r FreeBSD - - pkg install -y ${DEPENDENCIES} - $(pkg search -xq "^py3[0-9]+-(${PY_DEPS})-[0-9]+" | xargs) - - configure_script: - - ./boot.sh - - ./configure CC=${COMPILER} CFLAGS="-g -O2 -Wall" - MAKE=gmake --enable-Werror - || { cat config.log; exit 1; } - - build_script: - - gmake -j8 - - check_script: - - gmake -j8 check TESTSUITEFLAGS=-j8 RECHECK=yes - || { cat ./tests/testsuite.log; exit 1; } diff --git a/Makefile.am b/Makefile.am index 83a39a7ea..eceb9d292 100644 --- a/Makefile.am +++ b/Makefile.am @@ -71,7 +71,6 @@ EXTRA_DIST = \ .ci/linux-prepare.sh \ .ci/osx-build.sh \ .ci/osx-prepare.sh \ - .cirrus.yml \ .editorconfig \ .github/workflows/build-and-test.yml \ .github/workflows/freebsd.yml \ -- 2.53.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
