summaryrefslogtreecommitdiff
path: root/.cirrus.yml
blob: 44c8229f83c48da2d70848fd058326545db7bec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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