Skip to content

Commit 47c72de

Browse files
committed
CI: bump Elixir version
1 parent 33c40d2 commit 47c72de

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

.circleci/config.yml

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ defaults: &defaults
2626
working_directory: ~/repo
2727

2828
jobs:
29-
build_elixir_1_10_otp_22:
29+
build_elixir_1_11_otp_23:
3030
docker:
31-
- image: erlang:22.3.2
31+
- image: erlang:23.1.1
3232
environment:
33-
ELIXIR_VERSION: 1.10.2-otp-22
33+
ELIXIR_VERSION: 1.11.1-otp-23
3434
LC_ALL: C.UTF-8
3535
<<: *defaults
3636
steps:
@@ -54,6 +54,22 @@ jobs:
5454
- _build
5555
- deps
5656

57+
build_elixir_1_10_otp_23:
58+
docker:
59+
- image: erlang:23.1
60+
environment:
61+
ELIXIR_VERSION: 1.10.4-otp-22
62+
LC_ALL: C.UTF-8
63+
<<: *defaults
64+
steps:
65+
- checkout
66+
- <<: *install_system_deps
67+
- <<: *install_elixir
68+
- <<: *install_hex_rebar
69+
- run: mix deps.get
70+
- run: mix compile
71+
- run: mix test
72+
5773
build_elixir_1_9_otp_22:
5874
docker:
5975
- image: erlang:22.2.8
@@ -99,13 +115,16 @@ jobs:
99115
- <<: *install_elixir
100116
- <<: *install_hex_rebar
101117
- run: mix deps.get
118+
- run: mix compile
102119
- run: mix test
103120

104121
workflows:
105122
version: 2
106123
build_test:
107124
jobs:
108-
- build_elixir_1_10_otp_22:
125+
- build_elixir_1_11_otp_23:
126+
context: org-global
127+
- build_elixir_1_10_otp_23:
109128
context: org-global
110129
- build_elixir_1_9_otp_22:
111130
context: org-global

0 commit comments

Comments
 (0)