From 18cc173e9918db75dd0f204c9355fcd5f20e8d55 Mon Sep 17 00:00:00 2001 From: Dincho Todorov Date: Fri, 13 Jan 2023 09:13:34 +0200 Subject: [PATCH] Replace OTP 20 builds with OTP 22 --- .circleci/config.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 81e13c4..1fee49f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,7 +14,6 @@ commands: parameters: OTP_VERSION: type: string - default: "20.3.8.23" steps: - run: name: Setup environment @@ -43,7 +42,6 @@ commands: parameters: OTP_VERSION: type: string - default: "20" steps: - run: name: Setup environment @@ -61,24 +59,19 @@ commands: make jobs: - ubuntu_1804_otp20: - executor: ubuntu_1804 - steps: - - checkout - - setup_ubuntu - - run_build ubuntu_1804_otp21: executor: ubuntu_1804 steps: - checkout - setup_ubuntu: - OTP_VERSION: "21.0" + OTP_VERSION: "21.3.8.24" - run_build - macos_1106_otp20: - executor: macos_1106 + ubuntu_1804_otp22: + executor: ubuntu_1804 steps: - checkout - - setup_macos + - setup_ubuntu: + OTP_VERSION: "22.3.4.26" - run_build macos_1106_otp21: executor: macos_1106 @@ -87,11 +80,18 @@ jobs: - setup_macos: OTP_VERSION: "21" - run_build + macos_1106_otp22: + executor: macos_1106 + steps: + - checkout + - setup_macos: + OTP_VERSION: "22" + - run_build workflows: check: jobs: - - ubuntu_1804_otp20 - ubuntu_1804_otp21 - - macos_1106_otp20 + - ubuntu_1804_otp22 - macos_1106_otp21 + - macos_1106_otp22