Skip to content

Commit

Permalink
Add builds for macOS M1 and x86
Browse files Browse the repository at this point in the history
  • Loading branch information
zrgt committed Apr 12, 2024
1 parent e60f4ba commit 5832531
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/release_on_master_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,23 @@ jobs:
strategy:
matrix:
include:
- os: macos-latest
- os: macos-14
TARGET: macos
CMD_BUILD: >
pyinstaller aas_manager.spec &&
cp -r basyx dist/AAS_Manager/basyx &&
cd dist/ &&
zip -r AAS_Manager_MacOS.zip AAS_Manager
OUT_FILE_NAME: AAS_Manager_MacOS.zip
zip -r AAS_Manager_MacOS_M1.zip AAS_Manager
OUT_FILE_NAME: AAS_Manager_MacOS_M1.zip
ASSET_MIME: application/zip
- os: macos-12
TARGET: macos
CMD_BUILD: >
pyinstaller aas_manager.spec &&
cp -r basyx dist/AAS_Manager/basyx &&
cd dist/ &&
zip -r AAS_Manager_MacOS_x86.zip AAS_Manager
OUT_FILE_NAME: AAS_Manager_MacOS_x86.zip
ASSET_MIME: application/zip
- os: ubuntu-latest
TARGET: ubuntu
Expand Down
15 changes: 12 additions & 3 deletions .github/workflows/release_on_tag_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,23 @@ jobs:
strategy:
matrix:
include:
- os: macos-latest
- os: macos-14
TARGET: macos
CMD_BUILD: >
pyinstaller aas_manager.spec &&
cp -r basyx dist/AAS_Manager/basyx &&
cd dist/ &&
zip -r AAS_Manager_MacOS.zip AAS_Manager
OUT_FILE_NAME: AAS_Manager_MacOS.zip
zip -r AAS_Manager_MacOS_M1.zip AAS_Manager
OUT_FILE_NAME: AAS_Manager_MacOS_M1.zip
ASSET_MIME: application/zip
- os: macos-12
TARGET: macos
CMD_BUILD: >
pyinstaller aas_manager.spec &&
cp -r basyx dist/AAS_Manager/basyx &&
cd dist/ &&
zip -r AAS_Manager_MacOS_x86.zip AAS_Manager
OUT_FILE_NAME: AAS_Manager_MacOS_x86.zip
ASSET_MIME: application/zip
- os: ubuntu-latest
TARGET: ubuntu
Expand Down

0 comments on commit 5832531

Please sign in to comment.