Skip to content

Commit 6610938

Browse files
authored
Update precompile.yml
Remove deprecated macOS-11 support
1 parent fe5b0ba commit 6610938

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/precompile.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ jobs:
2020
matrix:
2121
job:
2222
- { os: "ubuntu-20.04", otp: "23", elixir: "1.14" }
23-
- { os: "macos-11", otp: "24.3.4.16", elixir: "1.14.3"}
23+
- { os: "macos-12", otp: "24.3.4.16", elixir: "1.14.3"}
2424
- { os: "windows-2019", otp: "25", elixir: "1.14"}
2525
steps:
2626
- uses: actions/checkout@v3
2727
- uses: erlef/setup-beam@v1
28-
if: matrix.job.os != 'macos-11'
28+
if: matrix.job.os != 'macos-12'
2929
with:
3030
otp-version: ${{ matrix.job.otp }}
3131
elixir-version: ${{ matrix.job.elixir }}
3232
- name: Install erlang and elixir
33-
if: matrix.job.os == 'macos-11'
33+
if: matrix.job.os == 'macos-12'
3434
run: |
3535
export ROOT_DIR=$(pwd)
3636
@@ -84,7 +84,7 @@ jobs:
8484
- name: Create precompiled library
8585
shell: bash
8686
run: |
87-
if [ "${{ matrix.job.os }}" = "macos-11" ]; then
87+
if [ "${{ matrix.job.os }}" = "macos-12" ]; then
8888
export PATH=$(pwd)/cache/otp/usr/local/bin:$(pwd)/./cache/elixir/elixir-${{ matrix.job.elixir }}/bin:${PATH}
8989
export ERL_ROOTDIR=$(pwd)/cache/otp/usr/local/lib/erlang
9090
elif [ "${{ matrix.job.os }}" = "ubuntu-20.04" ]; then

0 commit comments

Comments
 (0)