Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(macos): add distribution for apple silicon #29

Merged
merged 12 commits into from
Jun 20, 2024
Prev Previous commit
Next Next commit
fix (define ostag)
  • Loading branch information
wpbonelli committed Jun 19, 2024
commit a2f559866eb5455eac6fbfe87f0470805f7b8aa7
4 changes: 3 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ jobs:

- name: Check linked libs (macOS)
if: matrix.os == 'macos-14'
run: find $ostag -perm +111 -type f | xargs -I{} sh -c "otool -L {}"
run: |
ostag="${{ steps.ostag.outputs.ostag }}"
find $ostag -perm +111 -type f | xargs -I{} sh -c "otool -L {}"

- name: Upload programs
uses: actions/upload-artifact@v3
Expand Down
Loading