Skip to content
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