Skip to content

WIP: Windows Tray Icon #36

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

Draft
wants to merge 16 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
30 changes: 29 additions & 1 deletion .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 daemon
run: cargo build -p frameworkd

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

Expand All @@ -65,6 +68,12 @@ jobs:
name: framework_tool
path: target/debug/framework_tool

- name: Upload Linux Daemon
uses: actions/upload-artifact@v3
with:
name: framework_d
path: target/debug/framework_d

- name: Build UEFI application (no ESP)
run: make -C framework_uefi build/x86_64-unknown-uefi/boot.efi

Expand Down Expand Up @@ -97,6 +106,9 @@ jobs:
- name: Build Windows tool
run: cargo build -p framework_tool --no-default-features --features "windows"

- name: Build Windows daemon
run: cargo build -p frameworkd --no-default-features --features "windows"

- name: Check if Windows tool can start
run: cargo run --no-default-features --features "windows" -- --help

Expand All @@ -106,6 +118,12 @@ jobs:
name: framework_tool.exe
path: target/debug/framework_tool.exe

- name: Upload Windows Daemon
uses: actions/upload-artifact@v3
with:
name: frameworkd.exe
path: target/debug/frameworkd.exe


test:
name: Test Suite
Expand Down Expand Up @@ -147,7 +165,7 @@ jobs:
run: cargo fmt --all -- --check

- name: Run cargo clippy
run: cargo clippy -p framework_lib -p framework_tool -- -D warnings
run: cargo clippy -p framework_lib -p framework_tool -p framework_d -- -D warnings

# Just make sure doc generation works
doc:
Expand All @@ -170,3 +188,13 @@ jobs:

- name: Run cargo doc
run: cargo doc

build-installer:
name: Build frameworkd Windows installer
runs-on: windows-latest
steps:
- name: Build installer
run: cargo wix -p frameworkd --nocapture -d

- name: Check output
run: dir target\wix
Loading
Loading