Skip to content

Commit

Permalink
Add elixir 1.13.1 to circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
jfcloutier authored and fhunleth committed Jan 11, 2022
1 parent 9ca6c0f commit a917680
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ install_hex_rebar: &install_hex_rebar
mix local.rebar --force
jobs:
build_elixir_1_12_otp_24:
build_elixir_1_13_otp_24:
docker:
- image: hexpm/elixir:1.12.1-erlang-24.0.2-alpine-3.13.3
- image: hexpm/elixir:1.13.1-erlang-24.2-alpine-3.15.0
steps:
- checkout
- <<: *install_hex_rebar
Expand All @@ -31,6 +31,18 @@ jobs:
- _build
- deps

build_elixir_1_12_otp_24:
docker:
- image: hexpm/elixir:1.12.1-erlang-24.0.2-alpine-3.13.3
steps:
- checkout
- <<: *install_hex_rebar
- restore_cache:
keys:
- v1-mix-cache-{{ checksum "mix.lock" }}
- run: mix deps.get
- run: mix compile

build_elixir_1_11_otp_23:
docker:
- image: hexpm/elixir:1.11.2-erlang-23.1.2-alpine-3.12.1
Expand All @@ -55,6 +67,7 @@ workflows:
version: 2
build_test:
jobs:
- build_elixir_1_13_otp_24
- build_elixir_1_12_otp_24
- build_elixir_1_11_otp_23
- build_elixir_1_10_otp_23

0 comments on commit a917680

Please sign in to comment.