Skip to content

Commit

Permalink
Test Universal Mac Build
Browse files Browse the repository at this point in the history
  • Loading branch information
IntegerLimit authored Feb 7, 2025
1 parent 04fabe4 commit 2670f31
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,32 @@ jobs:
path: build/iqtree2
if-no-files-found: error

compile-mac-universal:
name: Mac OS Universal
runs-on: macos-14
needs:
- build-macos-x86_64
- build-macos-arm

steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
pattern: Mac *

- name: Combine Artifacts
run: lipo -create -output iqtree2 "Mac x86_64/iqtree2" "Mac Arm/iqtree2"

- name: Check Architectures
run: lipo -archs iqtree2

- name: Upload Built Binary
uses: actions/upload-artifact@v4
with:
name: Mac Universal
path: iqtree2
if-no-files-found: error

build-windows-x86-64:
name: Windows x86-64
runs-on: windows-2022
Expand Down

0 comments on commit 2670f31

Please sign in to comment.