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

Cache grcov compilation #608

Open
wants to merge 2 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
9 changes: 2 additions & 7 deletions .github/workflows/generate_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,18 @@ jobs:
# prepare taskwarrior, initial setup
task rc.confirmation=off || echo 0

- name: Install Rust toolchain for grcov compilation
- name: Install Rust toolchains for grcov and taskwarrior-tui compilation
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
override: true
components: llvm-tools-preview
- name: Install grcov
uses: clechasseur/rs-cargo@v2
with:
command: install
args: grcov

- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
override: true
components: llvm-tools-preview
- name: Checkout testdata
uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4773,7 +4773,7 @@ mod tests {
terminal.backend().assert_buffer(&expected);
}

// #[test]
#[tokio::test]
async fn test_draw_context_menu() {
let mut expected = Buffer::with_lines(vec![
"╭Context───────────────────────────────────────────────────────────────────────╮",
Expand Down
Loading