mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
attempt fixing macOS builds
This commit is contained in:
parent
03ed3e691b
commit
19bff8cb4e
1 changed files with 10 additions and 1 deletions
11
.github/workflows/build_multiplatform.yml
vendored
11
.github/workflows/build_multiplatform.yml
vendored
|
@ -296,7 +296,16 @@ jobs:
|
|||
- name: Display structure of downloaded files
|
||||
run: ls -R
|
||||
|
||||
- name: Build binaries
|
||||
- name: Build binaries macOS
|
||||
if: ${{startsWith(matrix.os, 'macos')}}
|
||||
working-directory: tnc
|
||||
run: |
|
||||
python3 -m nuitka --enable-plugin=numpy --assume-yes-for-downloads --macos-create-app-bundle --standalone daemon.py
|
||||
python3 -m nuitka --enable-plugin=numpy --assume-yes-for-downloads --macos-create-app-bundle --standalone main.py
|
||||
|
||||
|
||||
- name: Build binaries Linux and Windows
|
||||
if: ${{!startsWith(matrix.os, 'macos')}}
|
||||
working-directory: tnc
|
||||
run: |
|
||||
# pyinstaller freedata.spec
|
||||
|
|
Loading…
Reference in a new issue