We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2a8c9f commit 1859120Copy full SHA for 1859120
.github/workflows/fix_dylib.yml
@@ -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