aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
blob: 6cf10619cf975d3bfa6307229be291977b2ce986 (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
24
25
26
27
28
29
30
31
32
33
version: 2.1
orbs:
  rebar3: tsloughter/[email protected]

jobs:
  ct:
    parameters:
      tag:
        description: The docker tag to use.
        type: string
        default: "21.2"
    executor:
      name: rebar3/erlang
      tag: <<parameters.tag>>
    steps:
      - checkout
      - rebar3/ct

workflows:
  build-test:
    jobs:
      - ct:
          name: "21"
          tag: "21.2"
      - ct:
          name: "20"
          tag: "20"
      - ct:
          name: "19"
          tag: "19"
      - ct:
          name: "18"
          tag: "18"