Skip to content

Commit c76455c

Browse files
committed
Add debugging in MacOS CI
1 parent ec1ddeb commit c76455c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
fail-fast: false
4848
matrix:
4949
include: [
50-
{ os: macos-latest, host_arch: x86_64, macos_target: x86_64-apple-macos10.12, target_arch: x86_64 },
51-
{ os: macos-latest, host_arch: aarch64, macos_target: arm64-apple-macos11, target_arch: aarch64 }
50+
{ os: macos-13, host_arch: x86_64, macos_target: x86_64-apple-macos10.12, target_arch: x86_64 },
51+
{ os: macos-14, host_arch: aarch64, macos_target: arm64-apple-macos11, target_arch: aarch64 }
5252
]
5353
runs-on: ${{ matrix.os }}
5454
steps:
@@ -61,6 +61,9 @@ jobs:
6161
with:
6262
xcode-version: latest
6363

64+
- name: Inspect arch
65+
run: arch
66+
6467
- name: Install sbt-java-module-info
6568
run: pushd ./sbt-java-module-info; ./sbt publishLocal; popd
6669

@@ -72,6 +75,9 @@ jobs:
7275
- name: Env
7376
run: echo "nativeJniVersion=`cat version`" >> $GITHUB_ENV
7477

78+
- name: Inspect classes
79+
run: ls -al target/classes/darwin
80+
7581
- name: Inspect
7682
if: matrix.target_arch == 'x86_64'
7783
run: otool -L target/classes/darwin/${{ matrix.target_arch }}/libzstd-jni-${nativeJniVersion}.dylib

0 commit comments

Comments
 (0)