[llvm] [workflow] Fix abi checker in llvm-tests. Same fix as in 99fb0af80d16b0ff886f032441392219e1cac452 (PR #67957)
Tobias Hieta via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 2 00:43:43 PDT 2023
https://github.com/tru created https://github.com/llvm/llvm-project/pull/67957
Fixes #67651
>From 2791b93517fbffec8757ab994246a98b4fd9d727 Mon Sep 17 00:00:00 2001
From: Tobias Hieta <tobias at hieta.se>
Date: Mon, 2 Oct 2023 09:42:33 +0200
Subject: [PATCH] [workflow] Fix abi checker in llvm-tests. Same fix as in
99fb0af80d16b0ff886f032441392219e1cac452
---
.github/workflows/llvm-tests.yml | 3 +++
1 file changed, 3 insertions(+)
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
More information about the llvm-commits
mailing list