Skip to content

Commit

Permalink
Update precompile.yml
Browse files Browse the repository at this point in the history
Remove deprecated macOS-11 support
  • Loading branch information
AlexR2D2 committed Jun 24, 2024
1 parent fe5b0ba commit 6610938
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/precompile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ jobs:
matrix:
job:
- { os: "ubuntu-20.04", otp: "23", elixir: "1.14" }
- { os: "macos-11", otp: "24.3.4.16", elixir: "1.14.3"}
- { os: "macos-12", otp: "24.3.4.16", elixir: "1.14.3"}
- { os: "windows-2019", otp: "25", elixir: "1.14"}
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
if: matrix.job.os != 'macos-11'
if: matrix.job.os != 'macos-12'
with:
otp-version: ${{ matrix.job.otp }}
elixir-version: ${{ matrix.job.elixir }}
- name: Install erlang and elixir
if: matrix.job.os == 'macos-11'
if: matrix.job.os == 'macos-12'
run: |
export ROOT_DIR=$(pwd)
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Create precompiled library
shell: bash
run: |
if [ "${{ matrix.job.os }}" = "macos-11" ]; then
if [ "${{ matrix.job.os }}" = "macos-12" ]; then
export PATH=$(pwd)/cache/otp/usr/local/bin:$(pwd)/./cache/elixir/elixir-${{ matrix.job.elixir }}/bin:${PATH}
export ERL_ROOTDIR=$(pwd)/cache/otp/usr/local/lib/erlang
elif [ "${{ matrix.job.os }}" = "ubuntu-20.04" ]; then
Expand Down

0 comments on commit 6610938

Please sign in to comment.