From 582d6fb221e892aeb1d3aee8b436dc22fce91b26 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Sat, 13 Apr 2019 11:54:20 -0600 Subject: [PATCH] add cirrus ci config to test against linux, osx and windows --- .cirrus.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .cirrus.yml diff --git a/.cirrus.yml b/.cirrus.yml new file mode 100644 index 00000000..44c8229f --- /dev/null +++ b/.cirrus.yml @@ -0,0 +1,28 @@ +test_task: + container: + matrix: + - image: erlang:21 + - image: erlang:20 + - image: erlang:19 + - image: erlang:18 + - image: erlang:17 + test_script: | + ./bootstrap + ./rebar3 ct + +osx_test_task: + osx_instance: + image: mojave-base + install_script: brew install erlang + test_script: | + ./bootstrap + ./rebar3 ct + +windows_test_task: + windows_container: + image: cirrusci/windowsservercore:2019 + os_version: 2019 + install_script: choco install -y erlang + test_script: | + ./bootstrap + ./rebar3 ct