Skip to content

Commit

Permalink
Clean up and simplify the Verus CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
parno committed Nov 22, 2024
1 parent b23d6ff commit 3df2247
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/verus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
paths-ignore:
- 'README.md'
- 'CONTRIBUTING.md'
workflow_dispatch:

jobs:
Expand All @@ -29,8 +30,8 @@ jobs:
# - name: test proof action
# run: cargo test --package ide-assists --lib -- handlers::proof_action::wp_move_assertion::tests::wp_lemma_call --exact --nocapture

- name: build default
run: cargo xtask dist
#- name: build default
# run: cargo xtask dist

- name: build proof action version
run: cargo xtask dist --proof-action
Expand Down
1 change: 0 additions & 1 deletion crates/va-test/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ fn main() {
println!("\tparse error: {:?}", e);
}
}
return;

let work = all_modules.into_iter().filter(|module| {
let file_id = module.definition_source_file_id(&db).original_file(&db);
Expand Down
2 changes: 1 addition & 1 deletion editors/code/src/ctx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
} from "./dependencies_provider";
import { execRevealDependency } from "./commands";
import { PersistentState } from "./persistent_state";
import { bootstrap, findRustup, getVerus, validRustToolchain} from "./bootstrap";
import { bootstrap, getVerus, validRustToolchain} from "./bootstrap";
import type { RustAnalyzerExtensionApi } from "./main";
import type { JsonProject } from "./rust_project";
import { prepareTestExplorer } from "./test_explorer";
Expand Down

0 comments on commit 3df2247

Please sign in to comment.