Skip to content

Commit

Permalink
ci: test with Elixir 1.12/OTP 24
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth committed Jul 8, 2021
1 parent 0fe9f80 commit 217b919
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ defaults: &defaults
working_directory: ~/repo

jobs:
build_elixir_1_11_otp_23:
build_elixir_1_12_otp_24:
docker:
- image: erlang:23.1
- image: erlang:24.0.3
environment:
ELIXIR_VERSION: 1.11.0-otp-23
ELIXIR_VERSION: 1.12.2-otp-24
LC_ALL: C.UTF-8
<<: *defaults
steps:
Expand All @@ -54,6 +54,21 @@ jobs:
- _build
- deps

build_elixir_1_11_otp_23:
docker:
- image: erlang:23.1
environment:
ELIXIR_VERSION: 1.11.4-otp-23
LC_ALL: C.UTF-8
<<: *defaults
steps:
- checkout
- <<: *install_system_deps
- <<: *install_elixir
- <<: *install_hex_rebar
- run: mix deps.get
- run: mix test --exclude requires_working_audio

build_elixir_1_10_otp_23:
docker:
- image: erlang:23.1
Expand All @@ -73,5 +88,6 @@ workflows:
version: 2
build_test:
jobs:
- build_elixir_1_12_otp_24
- build_elixir_1_11_otp_23
- build_elixir_1_10_otp_23

0 comments on commit 217b919

Please sign in to comment.