Skip to content

Commit

Permalink
Use macos-13 for x86 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed Sep 10, 2024
1 parent 12bee90 commit bf417e5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
strategy:
matrix:
# Specifying `macos-14` is the way to get aarch64
os: [ubuntu-latest, macos-12, macos-14]
os: [ubuntu-latest, macos-13, macos-14]
include:
- os: macos-12
- os: macos-13
arch: x86_64
- os: macos-14
arch: arm64
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Install PDAL
if: steps.conda-cache.outputs.cache-hit != 'true'
run: conda install libpdal-trajectory=${{ matrix.pdal }} libpdal=${{ matrix.pdal }}
run: conda install libpdal=${{ matrix.pdal }}

- name: Set LD_LIBRARY_PATH
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand Down Expand Up @@ -136,15 +136,15 @@ jobs:

- name: Install PDAL
if: steps.conda-cache.outputs.cache-hit != 'true'
run: conda install libpdal-trajectory=${{ matrix.pdal }} libpdal=${{ matrix.pdal }}
run: conda install libpdal=${{ matrix.pdal }}

- name: Set LD_LIBRARY_PATH
if: ${{ matrix.os == 'ubuntu-latest' }}
run: echo "LD_LIBRARY_PATH=$CONDA/envs/pdal-java/lib:/usr/local/lib:$LD_LIBRARY_PATH" >> "$GITHUB_ENV"

- uses: actions/download-artifact@v4
with:
name: macos-12
name: macos-13
path: native/target/native/x86_64-darwin/bin
- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit bf417e5

Please sign in to comment.