summaryrefslogtreecommitdiff
path: root/.cirrus.yml
blob: 7b50d621c23ed6a08348610a3398e5441f1796a4 (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
29
test_task:
  container:
    matrix:
      - image: erlang:22
      - image: erlang:21
      - image: erlang:20
      - image: erlang:19
      - image: erlang:18
  test_script: |
    ./bootstrap
    ./rebar3 ct

osx_test_task:
  osx_instance:
    image: mojave-base
  install_script: brew install erlang
  test_script: |
    ./bootstrap
    ./rebar3 ct

# Windows CI appears broken for now and never passes
#windows_test_task:
#  windows_container:
#    image: cirrusci/windowsservercore:2019
#    os_version: 2019
#  install_script: choco install -y erlang
#  test_script: |
#    ./bootstrap
#    ./rebar3 ct