aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
diff options
context:
space:
mode:
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml33
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"