Skip to content

Commit

Permalink
[DEVEX-2353]: Test multiple elixir versions in CI (#15)
Browse files Browse the repository at this point in the history
* Trying to use different elixir versions in CI

* Removing otp23

* Commenting out elixir 27
  • Loading branch information
cottinisimone authored Nov 5, 2024
1 parent a5d0956 commit 18dac83
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,28 @@ on:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
version: [
{ elixir: '1.14', otp: '24' },
{ elixir: '1.14', otp: '25' },
{ elixir: '1.15', otp: '24' },
{ elixir: '1.15', otp: '25' },
{ elixir: '1.15', otp: '26' },
{ elixir: '1.16', otp: '24' },
{ elixir: '1.16', otp: '25' },
{ elixir: '1.16', otp: '26' }
# { elixir: '1.17', otp: '25' },
# { elixir: '1.17', otp: '26' },
# { elixir: '1.17', otp: '27' }
]
env:
MIX_ENV: test
steps:
- uses: erlef/setup-beam@v1
with:
elixir-version: 1.16
otp-version: 26
elixir-version: ${{ matrix.version.elixir }}
otp-version: ${{ matrix.version.otp }}

# Check out the code.
- name: Checkout
Expand All @@ -31,9 +46,9 @@ jobs:
cache-name: cache-elixir-deps
with:
path: deps
key: ${{ runner.os }}-mix-${{ env.cache-name }}-${{ hashFiles('**/mix.lock') }}
key: ${{ runner.os }}-otp-${{ matrix.version.otp }}-mix-${{ env.cache-name }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-${{ env.cache-name }}-
${{ runner.os }}-otp-${{ matrix.version.otp }}-mix-${{ env.cache-name }}-
# Define how to cache the `_build` directory.
# After the first run, this speeds up tests runs a lot.
# This includes not re-compiling our project's downloaded deps every run.
Expand All @@ -44,10 +59,10 @@ jobs:
cache-name: cache-compiled-build
with:
path: _build
key: ${{ runner.os }}-mix-${{ env.cache-name }}-${{ hashFiles('**/mix.lock') }}
key: ${{ runner.os }}-otp-${{ matrix.version.otp }}-mix-${{ env.cache-name }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-${{ env.cache-name }}-
${{ runner.os }}-mix-
${{ runner.os }}-otp-${{ matrix.version.otp }}-mix-${{ env.cache-name }}-
${{ runner.os }}-otp-${{ matrix.version.otp }}-mix-
# Conditionally bust the cache when job is re-run.
# Sometimes, we may have issues with incremental builds that are fixed by doing a full recompile.
# In order to not waste dev time on such trivial issues force a full recompile only on builds that are retried.
Expand Down

0 comments on commit 18dac83

Please sign in to comment.