Skip to content

Commit ee88a14

Browse files
author
Carolyn Zech
committed
fix paths in summary md step
1 parent 643afd4 commit ee88a14

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/kani.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,14 @@ jobs:
176176
# Step 3: Add output to job summary
177177
- name: Add Autoharness Analyzer output to job summary
178178
run: |
179+
pushd scripts/autoharness_analyzer
179180
echo "# Autoharness Failure Summary" >> "$GITHUB_STEP_SUMMARY"
180181
echo "## Crate core, all functions" >> "$GITHUB_STEP_SUMMARY"
181-
cat autoharness_analyzer/core_autoharness_data.md >> "$GITHUB_STEP_SUMMARY"
182+
cat core_autoharness_data.md >> "$GITHUB_STEP_SUMMARY"
182183
echo "## Crate core, unsafe functions" >> "$GITHUB_STEP_SUMMARY"
183-
cat autoharness_analyzer/core_autoharness_data.md >> "$GITHUB_STEP_SUMMARY"
184+
cat core_autoharness_data.md >> "$GITHUB_STEP_SUMMARY"
184185
echo "## Crate std, all functions" >> "$GITHUB_STEP_SUMMARY"
185-
cat autoharness_analyzer/std_autoharness_data.md >> "$GITHUB_STEP_SUMMARY"
186+
cat std_autoharness_data.md >> "$GITHUB_STEP_SUMMARY"
186187
echo "## Crate std, unsafe functions" >> "$GITHUB_STEP_SUMMARY"
187-
cat autoharness_analyzer/std_unsafe_autoharness_data.md >> "$GITHUB_STEP_SUMMARY"
188+
cat std_unsafe_autoharness_data.md >> "$GITHUB_STEP_SUMMARY"
189+
popd

0 commit comments

Comments
 (0)