Skip to content

Commit

Permalink
accept LC_BUILD or LC_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
dagit committed Sep 30, 2024
1 parent a707b6b commit f86d063
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/onpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ jobs:
- name: Check min version (x86)
if: ${{ matrix.is-osx }}
run: |
otool -l target/x86_64-apple-darwin/release/annelid | grep -A 3 LC_VERSION_MIN_MACOSX
otool -l target/x86_64-apple-darwin/release/annelid | grep -A 3 -E 'LC_BUILD_VERSION|LC_VERSION_MIN_MACOSX'
- name: Build for aarch64-apple-darwin (macOS)
if: ${{ matrix.is-osx }}
Expand All @@ -240,7 +240,7 @@ jobs:
- name: Check min version (arm)
if: ${{ matrix.is-osx }}
run: |
otool -l target/aarch64-apple-darwin/release/annelid | grep -A 3 LC_VERSION_MIN_MACOSX
otool -l target/aarch64-apple-darwin/release/annelid | grep -A 3 -E 'LC_BUILD_VERSION|LC_VERSION_MIN_MACOSX'
- name: Create universal binary (macOS)
if: ${{ matrix.is-osx }}
Expand Down

0 comments on commit f86d063

Please sign in to comment.