Skip to content

Commit

Permalink
fix: set elixir/otp versions
Browse files Browse the repository at this point in the history
  • Loading branch information
polvalente committed Jun 7, 2024
1 parent 257d922 commit 894beb1
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ env:
jobs:
download_iree:
runs-on: macos-14
strategy:
matrix:
- OTP_VERSION: 27.0
- ELIXIR_VERSION: 1.15.4
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -29,10 +33,10 @@ jobs:
asdf plugin add erlang https://github.com/asdf-vm/asdf-erlang.git
asdf plugin-add elixir https://github.com/asdf-vm/asdf-elixir.git
export KERL_CONFIGURE_OPTIONS="--disable-debug --without-javac"
asdf install erlang ${{ matrix.pair.OTP_VERSION }}
asdf install elixir ${{ matrix.pair.ELIXIR_VERSION }}
asdf global erlang ${{ matrix.pair.OTP_VERSION }}
asdf global elixir ${{ matrix.pair.ELIXIR_VERSION }}
asdf install erlang ${{ matrix.OTP_VERSION }}
asdf install elixir ${{ matrix.ELIXIR_VERSION }}
asdf global erlang ${{ matrix.OTP_VERSION }}
asdf global elixir ${{ matrix.ELIXIR_VERSION }}
source $(brew --prefix asdf)/libexec/asdf.sh
mix local.hex --force
mix local.rebar --force
Expand Down

0 comments on commit 894beb1

Please sign in to comment.