summaryrefslogtreecommitdiff
path: root/.cirrus.yml
blob: 11d42299e8b8809aa7c5316b9ca92a234c61b0bb (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: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 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