Skip to content

Commit

Permalink
try to update github action to also build skialib aarch64 on macos.
Browse files Browse the repository at this point in the history
  • Loading branch information
phronmophobic committed Mar 31, 2024
1 parent b04bbe2 commit 74edb8d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
macos:
runs-on: macos-latest
runs-on: macos-14
environment: Actions
strategy:
matrix:
Expand All @@ -24,6 +24,7 @@ jobs:
platform: macos
build_type: ${{ matrix.build_type }}
arch: ${{ matrix.arch }}
java_arch: ${{ matrix.arch == 'x86_64' && 'x64' || 'aarch64' }}
shared_suffix: "dylib"
artifact_name: libmembraneskia-${{matrix.arch}}.dylib
steps:
Expand All @@ -44,7 +45,8 @@ jobs:
uses: actions/setup-java@v2
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '11'
java-version: '17'
architecture: ${{ env.java_arch }}
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
Expand Down

0 comments on commit 74edb8d

Please sign in to comment.