aboutsummaryrefslogtreecommitdiffstats
path: root/.cirrus.yml
blob: 4ca365a299362547291b30f2605c78533acf1b41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
test_task:
  use_compute_credits: true
  container:
    matrix:
      - image: erlang:22
      - image: erlang:21
      - image: erlang:20
      - image: erlang:19
      - image: erlang:18
  test_script: |
    rebar3 eunit && rebar3 ct
  always:
    junit_artifacts:
      path: "_build/test/logs/ct_run.*/junit_report.xml"

osx_check_task:
  osx_instance:
    image: mojave-base
  install_script: brew install erlang
  test_script: |
    wget https://s3.amazonaws.com/rebar3/rebar3
    chmod +x rebar3
    ./rebar3 eunit && ./rebar3 ct