Skip to content

Commit 582d6fb

Browse files
committed
add cirrus ci config to test against linux, osx and windows
1 parent d29728e commit 582d6fb

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.cirrus.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
test_task:
2+
container:
3+
matrix:
4+
- image: erlang:21
5+
- image: erlang:20
6+
- image: erlang:19
7+
- image: erlang:18
8+
- image: erlang:17
9+
test_script: |
10+
./bootstrap
11+
./rebar3 ct
12+
13+
osx_test_task:
14+
osx_instance:
15+
image: mojave-base
16+
install_script: brew install erlang
17+
test_script: |
18+
./bootstrap
19+
./rebar3 ct
20+
21+
windows_test_task:
22+
windows_container:
23+
image: cirrusci/windowsservercore:2019
24+
os_version: 2019
25+
install_script: choco install -y erlang
26+
test_script: |
27+
./bootstrap
28+
./rebar3 ct

0 commit comments

Comments
 (0)