Skip to content

Commit

Permalink
Try to fix windows path
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Aug 28, 2024
1 parent 351a412 commit 1a2698c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
id: regressions
# steps.regressions.conclusion is always "success", but if no regressions, steps.regressions.outcome is "success"
continue-on-error: true
run: python ./branch/scripts/dev/gha_regressions.py ./baseline/build/testfiles ./branch/build/testfiles/ ${{ github.workspace }}/regressions
run: python ./branch/scripts/dev/gha_regressions.py ./baseline/build/testfiles ./branch/build/testfiles/ ./regressions

- uses: actions/upload-artifact@v4
id: upload_regressions
Expand Down
2 changes: 1 addition & 1 deletion scripts/dev/gha_regressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ def check_all_regressions(self, base_testfiles: Path, mod_testfiles: Path, bundl
print(f"* Diffs by Type *:\n{json.dumps(self.diffs_by_type, indent=2, sort_keys=True)}\n")
if any_diffs:
self.generate_markdown_summary(bundle_root)
print("::warning title=Regressions::Diffs Detected")
# print("::warning title=Regressions::Diffs Detected")
return any_diffs


Expand Down

0 comments on commit 1a2698c

Please sign in to comment.