Skip to content

Commit

Permalink
fix icd path
Browse files Browse the repository at this point in the history
Change-Id: I5d98cc2a09ad5fc6e205b07db112581513ee2810
  • Loading branch information
kpet committed Nov 24, 2024
1 parent 0bbab7d commit 61491de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ jobs:
- name: Show stats
shell: bash
run: df -h
- name: Download Swiftshader artifacts
- name: Download Mesa artifacts
uses: dawidd6/action-download-artifact@v6
with:
workflow: build-mesa.yml
Expand Down
2 changes: 1 addition & 1 deletion tests/fixup-mesa-icd-json.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
data = json.load(f)
lpath = data['ICD']['library_path']
print(f"Origial library_path: {lpath}")
lpath = os.path.basename(lpath)
lpath = './' + os.path.basename(lpath)
print(f"Fixed up library_path: {lpath}")
data['ICD']['library_path'] = lpath

Expand Down

0 comments on commit 61491de

Please sign in to comment.