Skip to content

Add GUI - for setting RGB LEDs on Framework Desktop #191

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

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
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
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ jobs:
- name: Build Linux tool
run: cargo build -p framework_tool

- name: Build Linux GUI
run: cargo build -p framework_gui

- name: Check if Linux tool can start
run: cargo run -- --help

Expand Down Expand Up @@ -124,6 +127,10 @@ jobs:
cargo build -p framework_tool
cargo build -p framework_tool --release

- name: Build Windows gui
run: |
cargo build -p framework_gui --release

- name: Check if Windows tool can start
run: cargo run -- --help --release

Expand All @@ -134,6 +141,13 @@ jobs:
name: framework_tool.exe
path: target/release/framework_tool.exe

# Upload release build so that vcruntime is statically linked
- name: Upload Windows GUI
uses: actions/upload-artifact@v4
with:
name: framework_gui.exe
path: target/release/framework_gui.exe


test:
name: Test Suite
Expand Down
Loading
Loading