소스 검색
add cirrus ci config to test against linux, osx and windows
pull/2052/head
Tristan Sloughter
6 년 전
No known key found for this signature in database
GPG 키 ID: AAB97DDECCEB8150
1개의 변경된 파일과
28개의 추가작업 그리고
0개의 파일을 삭제
-
.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 |