-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add cirrus ci config to test against linux, osx and windows
- Loading branch information
1 parent
d29728e
commit 582d6fb
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |