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

Add an egui based GUI for macOS and Windows #783

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: x86_64-apple-darwin
args: --release --out dist --strip
args: --release --out dist --strip --features gui
sccache: 'true'
- name: Install built wheel - x86_64
run: |
Expand All @@ -35,7 +35,8 @@ jobs:
- name: Build wheels - universal2
uses: PyO3/maturin-action@v1
with:
args: --release --universal2 --out dist --strip
target: universal2-apple-darwin
args: --release --out dist --strip --features gui
sccache: 'true'
- name: Install built wheel - universal2
run: |
Expand Down Expand Up @@ -98,13 +99,13 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --strip
args: --release --out dist --strip --features gui
- name: Build wheels
if: matrix.platform.arch == 'arm64'
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --strip --no-default-features --features atomic64,native-tls
args: --release --out dist --strip --no-default-features --features atomic64,native-tls,gui
sccache: 'true'
- name: Install built wheel
if: matrix.platform.arch != 'arm64'
Expand Down
Loading