Use Ubuntu 20.04 for build jobs

This commit is contained in:
Dincho Todorov 2023-01-13 09:56:53 +02:00
parent f8eea1e565
commit 93c0a668c7

View File

@ -1,9 +1,9 @@
version: 2.1 version: 2.1
executors: executors:
ubuntu_1804: ubuntu_2004:
docker: docker:
- image: circleci/buildpack-deps:bionic - image: circleci/buildpack-deps:20.04
macos_1106: macos_1106:
macos: macos:
xcode: "13.2.1" xcode: "13.2.1"
@ -59,22 +59,22 @@ commands:
make make
jobs: jobs:
ubuntu_1804_otp21: ubuntu_2004_otp21:
executor: ubuntu_1804 executor: ubuntu_2004
steps: steps:
- checkout - checkout
- setup_ubuntu: - setup_ubuntu:
OTP_VERSION: "21.3.8.24" OTP_VERSION: "21.3.8.24"
- run_build - run_build
ubuntu_1804_otp22: ubuntu_2004_otp22:
executor: ubuntu_1804 executor: ubuntu_2004
steps: steps:
- checkout - checkout
- setup_ubuntu: - setup_ubuntu:
OTP_VERSION: "22.3.4.26" OTP_VERSION: "22.3.4.26"
- run_build - run_build
ubuntu_1804_otp23: ubuntu_2004_otp23:
executor: ubuntu_1804 executor: ubuntu_2004
steps: steps:
- checkout - checkout
- setup_ubuntu: - setup_ubuntu:
@ -105,9 +105,9 @@ jobs:
workflows: workflows:
check: check:
jobs: jobs:
- ubuntu_1804_otp21 - ubuntu_2004_otp21
- ubuntu_1804_otp22 - ubuntu_2004_otp22
- ubuntu_1804_otp23 - ubuntu_2004_otp23
- macos_1106_otp21 - macos_1106_otp21
- macos_1106_otp22 - macos_1106_otp22
- macos_1106_otp23 - macos_1106_otp23