Replace OTP 20 builds with OTP 22

This commit is contained in:
Dincho Todorov 2023-01-13 09:13:34 +02:00
parent 67e388b93b
commit 18cc173e99

View File

@ -14,7 +14,6 @@ commands:
parameters: parameters:
OTP_VERSION: OTP_VERSION:
type: string type: string
default: "20.3.8.23"
steps: steps:
- run: - run:
name: Setup environment name: Setup environment
@ -43,7 +42,6 @@ commands:
parameters: parameters:
OTP_VERSION: OTP_VERSION:
type: string type: string
default: "20"
steps: steps:
- run: - run:
name: Setup environment name: Setup environment
@ -61,24 +59,19 @@ commands:
make make
jobs: jobs:
ubuntu_1804_otp20:
executor: ubuntu_1804
steps:
- checkout
- setup_ubuntu
- run_build
ubuntu_1804_otp21: ubuntu_1804_otp21:
executor: ubuntu_1804 executor: ubuntu_1804
steps: steps:
- checkout - checkout
- setup_ubuntu: - setup_ubuntu:
OTP_VERSION: "21.0" OTP_VERSION: "21.3.8.24"
- run_build - run_build
macos_1106_otp20: ubuntu_1804_otp22:
executor: macos_1106 executor: ubuntu_1804
steps: steps:
- checkout - checkout
- setup_macos - setup_ubuntu:
OTP_VERSION: "22.3.4.26"
- run_build - run_build
macos_1106_otp21: macos_1106_otp21:
executor: macos_1106 executor: macos_1106
@ -87,11 +80,18 @@ jobs:
- setup_macos: - setup_macos:
OTP_VERSION: "21" OTP_VERSION: "21"
- run_build - run_build
macos_1106_otp22:
executor: macos_1106
steps:
- checkout
- setup_macos:
OTP_VERSION: "22"
- run_build
workflows: workflows:
check: check:
jobs: jobs:
- ubuntu_1804_otp20
- ubuntu_1804_otp21 - ubuntu_1804_otp21
- macos_1106_otp20 - ubuntu_1804_otp22
- macos_1106_otp21 - macos_1106_otp21
- macos_1106_otp22