From e76a01f8c41ef4c56c0f6eebd66059d29e2b6ebc Mon Sep 17 00:00:00 2001 From: Ulf Wiger Date: Thu, 5 Oct 2023 11:12:32 +0200 Subject: [PATCH] add ci workflow --- .circleci/config.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a093bec..e8d9de3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,7 +15,7 @@ executors: ERLANG_ROCKSDB_BUILDOPTS: "-j2" jobs: - - otp24 + otp24: build: executor: aebuilder steps: @@ -23,7 +23,7 @@ jobs: - run: make test - store_artifacts: path: _build/test/logs - - otp23 + otp23: build: executor: aebuilder23 steps: @@ -31,3 +31,9 @@ jobs: - run: make test - store_artifacts: path: _build/test/logs + +workflows: + build_and_test: + jobs: + - otp23 + - otp24