From 4e8936f666347f5f61da8ea097d1060b3f546ce3 Mon Sep 17 00:00:00 2001 From: Sean T Allen Date: Wed, 27 Feb 2019 22:44:08 -0500 Subject: [PATCH] Test FreeBSD 12 with CirrusCI --- .appveyor.yml | 1 + .cirrus.yml | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 .cirrus.yml diff --git a/.appveyor.yml b/.appveyor.yml index c71a9eeedd..74688311a2 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -23,6 +23,7 @@ skip_commits: files: - .bintray.sh - .circleci/config.yml + - .cirrus.yml - .gitattributes - .gitignore - .gitmodules diff --git a/.cirrus.yml b/.cirrus.yml new file mode 100644 index 0000000000..bb7014bbb4 --- /dev/null +++ b/.cirrus.yml @@ -0,0 +1,13 @@ +freebsd_instance: + image: freebsd-12-0-release-amd64 + +test_task: + install_script: + - sudo pkg install -y gmake pcre2 libunwind llvm60 git + env: + matrix: + CONFIG: debug + CONFIG: release + test_script: + - gmake all config=$CONFIG -j3 + - gmake test-ci config=$CONFIG