Skip to content

Commit 43d94e5

Browse files
authored
ci: update installed version of VTune (#12145)
* ci: update installed version of VTune This updates the installed version of VTune to v2025.7.0. See abrown/install-vtune-action#7. * Print output earlier * Use the true latest version: v3 prtest:full
1 parent 54bbe08 commit 43d94e5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,7 @@ jobs:
877877
# Install VTune, see `cli_tests::profile_with_vtune`.
878878
- name: Install VTune
879879
if: matrix.filter == 'linux-x64' && contains(matrix.bucket, 'wasmtime-cli')
880-
uses: abrown/install-vtune-action@v1
880+
uses: abrown/install-vtune-action@v3
881881

882882
# Build and test all features.
883883
#

tests/all/cli_tests.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2523,13 +2523,14 @@ fn profile_with_vtune() -> Result<()> {
25232523
println!("> executing: {bin:?}");
25242524
let output = bin.output()?;
25252525

2526-
assert!(output.status.success());
25272526
let stdout = String::from_utf8_lossy(&output.stdout);
25282527
let stderr = String::from_utf8_lossy(&output.stderr);
25292528
println!("> stdout:\n{stdout}");
2530-
assert!(stdout.contains("CPU Time"));
25312529
println!("> stderr:\n{stderr}");
2530+
2531+
assert!(output.status.success());
25322532
assert!(!stderr.contains("Error"));
2533+
assert!(stdout.contains("CPU Time"));
25332534
Ok(())
25342535
}
25352536

0 commit comments

Comments
 (0)