[llvm] [workflow] Fix abi checker in llvm-tests. Same fix as in 99fb0af80d16b0ff886f032441392219e1cac452 (PR #67957)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 2 00:44:53 PDT 2023
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
<details>
<summary>Changes</summary>
Fixes #<!-- -->67651
---
Full diff: https://github.com/llvm/llvm-project/pull/67957.diff
1 Files Affected:
- (modified) .github/workflows/llvm-tests.yml (+3)
``````````diff
diff --git a/.github/workflows/llvm-tests.yml b/.github/workflows/llvm-tests.yml
index 428235b72fa5ad2..cc9855ce182b2b8 100644
--- a/.github/workflows/llvm-tests.yml
+++ b/.github/workflows/llvm-tests.yml
@@ -170,14 +170,17 @@ jobs:
uses: actions/download-artifact at v3
with:
name: build-baseline
+ path: build-baseline
- name: Download latest
uses: actions/download-artifact at v3
with:
name: build-latest
+ path: build-latest
- name: Download symbol list
uses: actions/download-artifact at v3
with:
name: symbol-list
+ path: symbol-list
- name: Install abi-compliance-checker
run: sudo apt-get install abi-compliance-checker
``````````
</details>
https://github.com/llvm/llvm-project/pull/67957
More information about the llvm-commits
mailing list