Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
update rust ci script
Browse files Browse the repository at this point in the history
  • Loading branch information
caesay committed Dec 25, 2023
1 parent 437c342 commit 2e4db61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ jobs:

- name: Build Rust
working-directory: src/Rust
run: cargo build --release
run: cargo build --release --features windows

- name: Test Rust
working-directory: src/Rust
run: cargo llvm-cov --cobertura --output-path ../../test/coverage.rust.xml
run: cargo llvm-cov --cobertura --features windows --output-path ../../test/coverage.rust.xml

- name: Build .NET
run: dotnet build -c Release
Expand Down
2 changes: 1 addition & 1 deletion src/Rust/src/windows/mod.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
pub mod download;
pub mod prerequisite;
pub mod runtimes;
pub mod splash;

mod self_delete;
mod shortcuts;
pub mod splash;
mod util;

pub use self_delete::*;
Expand Down

0 comments on commit 2e4db61

Please sign in to comment.