Skip to content

Commit

Permalink
CI: Test with Elixir 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jjcarstens committed Sep 11, 2022
1 parent 298ede6 commit 3a1f6c6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
16 changes: 14 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ install_system_deps: &install_system_deps
apk add --no-cache build-base linux-headers libmnl-dev libnl3-dev git openssh
jobs:
build_elixir_1_13_otp_25:
build_elixir_1_14_otp_25:
docker:
- image: hexpm/elixir:1.13.4-erlang-25.0.1-alpine-3.15.4
- image: hexpm/elixir:1.14.0-erlang-25.0.4-alpine-3.16.1
<<: *defaults
steps:
- checkout
Expand All @@ -44,6 +44,17 @@ jobs:
- _build
- deps

build_elixir_1_13_otp_25:
docker:
- image: hexpm/elixir:1.13.4-erlang-25.0.4-alpine-3.16.1
<<: *defaults
steps:
- checkout
- <<: *install_hex_rebar
- <<: *install_system_deps
- run: mix deps.get
- run: mix test

build_elixir_1_13_otp_24:
docker:
- image: hexpm/elixir:1.13.4-erlang-24.3.4-alpine-3.15.3
Expand Down Expand Up @@ -92,6 +103,7 @@ workflows:
version: 2
build_test:
jobs:
- build_elixir_1_14_otp_25
- build_elixir_1_13_otp_25
- build_elixir_1_13_otp_24
- build_elixir_1_12_otp_24
Expand Down
2 changes: 1 addition & 1 deletion test/nerves_ssh/options_test.exs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule NervesSSH.OptionsTest do
use ExUnit.Case
use Bitwise
import Bitwise

alias NervesSSH.Options

Expand Down

0 comments on commit 3a1f6c6

Please sign in to comment.