Skip to content

Commit 1859120

Browse files
committed
Try to print otool deps
1 parent b2a8c9f commit 1859120

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/fix_dylib.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Fix dylib dependencies
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
check-dylib:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
# See https://github.com/actions/runner-images?tab=readme-ov-file#available-images
11+
os: [macos-latest]
12+
runs-on: ${{ matrix.os }}
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: List dependencies (macOS)
16+
run: otool -L ./bin/openocd
17+
- name: Try to run openocd
18+
run: ./bin/openocd --version || true

0 commit comments

Comments
 (0)