Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteSte authored Jan 18, 2024
1 parent e9ce951 commit 553dbca
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, flyci-macos-large-latest-m1]
architecture: [x86_64, arm64] # Add ARM64 architecture
java: [8]
distribution: [temurin]
pdal: [2.6.2]
Expand Down Expand Up @@ -68,11 +69,17 @@ jobs:
run: sbt +test

- uses: actions/upload-artifact@v3
if: ${{ startsWith(matrix.os, 'macos') }}
if: matrix.os == 'macos-latest' && matrix.architecture == 'x86_64'
with:
name: macos
name: macos-x86_64
path: native/target/native/x86_64-darwin/bin

- uses: actions/upload-artifact@v3
if: matrix.os == 'flyci-macos-large-latest-m1' && matrix.architecture == 'arm64'
with:
name: macos-arm64
path: native/target/native/arm64-darwin/bin

publish:
strategy:
matrix:
Expand Down

0 comments on commit 553dbca

Please sign in to comment.