Skip to content

Commit

Permalink
Elixir 16 compatibility & Elixir / Erlang CI Matrix update (#128)
Browse files Browse the repository at this point in the history
* Add yecc to compilers

* Update Elixir / Erlang Test Matrix
  • Loading branch information
maennchen committed Dec 30, 2023
1 parent 8c8e9fd commit 539787d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/branch_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:

uses: ./.github/workflows/part_test.yml
with:
elixirVersion: "1.15.7"
otpVersion: "26.1"
elixirVersion: "1.16.0"
otpVersion: "26.2"
secrets:
CACHE_VERSION: "${{ secrets.CACHE_VERSION }}"

Expand All @@ -24,7 +24,7 @@ jobs:

uses: ./.github/workflows/part_docs.yml
with:
elixirVersion: "1.15.7"
otpVersion: "26.1"
elixirVersion: "1.16.0"
otpVersion: "26.2"
secrets:
CACHE_VERSION: "${{ secrets.CACHE_VERSION }}"
6 changes: 3 additions & 3 deletions .github/workflows/part_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ jobs:
- otp: '21.3'
elixir: '1.11'
runs-on: ubuntu-20.04
- otp: '26.1'
elixir: '1.15'
- otp: '26.2'
elixir: '1.16'
runs-on: ubuntu-latest
- otp: '26.1'
- otp: '26.2'
elixir: 'main'
runs-on: ubuntu-latest
- otp: '${{ inputs.otpVersion }}'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:

uses: ./.github/workflows/part_test.yml
with:
elixirVersion: "1.15.7"
otpVersion: "26.1"
elixirVersion: "1.16.0"
otpVersion: "26.2"
secrets:
CACHE_VERSION: "${{ secrets.CACHE_VERSION }}"

Expand All @@ -25,8 +25,8 @@ jobs:

uses: ./.github/workflows/part_docs.yml
with:
elixirVersion: "1.15.7"
otpVersion: "26.1"
elixirVersion: "1.16.0"
otpVersion: "26.2"
secrets:
CACHE_VERSION: "${{ secrets.CACHE_VERSION }}"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:

uses: ./.github/workflows/part_docs.yml
with:
elixirVersion: "1.15.7"
otpVersion: "26.1"
elixirVersion: "1.16.0"
otpVersion: "26.2"
releaseName: "${{ github.ref_name }}"
secrets:
CACHE_VERSION: "${{ secrets.CACHE_VERSION }}"
1 change: 1 addition & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ defmodule Expo.MixProject do
version: @version,
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
compilers: [:yecc] ++ Mix.compilers(),
deps: deps(),
docs: docs(),
test_coverage: [tool: ExCoveralls],
Expand Down

0 comments on commit 539787d

Please sign in to comment.