[llvm] workflows: Fix baseline version for llvm abi checks (PR #85166)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 15 03:01:29 PDT 2024
================
@@ -58,10 +59,17 @@ jobs:
- name: Setup Variables
id: vars
run: |
- if [ ${{ steps.version.outputs.LLVM_VERSION_MINOR }} -ne 0 ] || [ ${{ steps.version.outputs.LLVM_VERSION_PATCH }} -eq 0 ]; then
+ # libLLVM:
+ # 18.1.0 we aren't doing ABI checks.
+ # 18.1.1 We want to check 18.1.0.
+ # libclang:
----------------
nikic wrote:
Isn't libclang handled by the separate libclang-abi-tests workflow?
I think you probably meant the LLVM C API rather than libclang here?
https://github.com/llvm/llvm-project/pull/85166
More information about the llvm-commits
mailing list