From ef40fd3a3e26c6725268807920bf93ed8076a2f3 Mon Sep 17 00:00:00 2001 From: Dincho Todorov Date: Fri, 13 Jan 2023 09:42:37 +0200 Subject: [PATCH] Add OTP 23 builds --- .circleci/config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1fee49f..321a886 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -73,6 +73,13 @@ jobs: - setup_ubuntu: OTP_VERSION: "22.3.4.26" - run_build + ubuntu_1804_otp23: + executor: ubuntu_1804 + steps: + - checkout + - setup_ubuntu: + OTP_VERSION: "23.3.4.18" + - run_build macos_1106_otp21: executor: macos_1106 steps: @@ -87,11 +94,20 @@ jobs: - setup_macos: OTP_VERSION: "22" - run_build + macos_1106_otp22: + executor: macos_1106 + steps: + - checkout + - setup_macos: + OTP_VERSION: "23" + - run_build workflows: check: jobs: - ubuntu_1804_otp21 - ubuntu_1804_otp22 + - ubuntu_1804_otp23 - macos_1106_otp21 - macos_1106_otp22 + - macos_1106_otp23