diff options
author | Tristan Sloughter <[email protected]> | 2019-03-31 14:59:31 -0600 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2019-03-31 16:37:20 -0600 |
commit | 48220c2417046307d40ed191d33459f8548445b3 (patch) | |
tree | 910b752f328d2f3bf2322a26faed79fc27990885 /.circleci/config.yml | |
parent | edad2b498ad12ee2860a09f80e7862efadf0eff2 (diff) | |
download | relx-try-circleci.tar.gz relx-try-circleci.tar.bz2 relx-try-circleci.zip |
try circleci for CItry-circleci
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..6cf1061 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,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" |