aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2022-08-02 02:02:15 -0700
committerTom Stellard <tstellar@redhat.com>2022-08-02 21:20:35 -0700
commit626fadf59918b09cdbdb578b0fc7490c4fce9093 (patch)
tree8f7bd5ec95dc19c46e11c7c087bc014d8f42e500
parent79b1ca8ebdeb2bc8c20fceb53b95959526a0b716 (diff)
workflows: Fix typo from 2d3d0f50ceb938c155a7283e684f28190d24d6ba
(cherry picked from commit be3587ae9ab2289179eea0bf6b241d796524062a)
-rw-r--r--.github/workflows/libclang-abi-tests.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/libclang-abi-tests.yml b/.github/workflows/libclang-abi-tests.yml
index 1b063f6430a1..8cc2f3a0fa3f 100644
--- a/.github/workflows/libclang-abi-tests.yml
+++ b/.github/workflows/libclang-abi-tests.yml
@@ -126,7 +126,7 @@ jobs:
parallel abi-dumper -lver ${{ matrix.ref }} -skip-cxx -public-headers ./install/include/${{ needs.abi-dump-setup.outputs.ABI_HEADERS }} -o {}-${{ matrix.ref }}.abi ./build/lib/{} ::: ${{ needs.abi-dump-setup.outputs.ABI_LIBS }}
for lib in ${{ needs.abi-dump-setup.outputs.ABI_LIBS }}; do
# Remove symbol versioning from dumps, so we can compare across major versions.
- sed -i 's/LLVM_${{ matrix.llvm_version_major }}/LLVM_NOVERSION/' $lib-${{ matrix.ref }}.abi
+ sed -i 's/LLVM_[0-9]\+/LLVM_NOVERSION/' $lib-${{ matrix.ref }}.abi
done
- name: Upload ABI file
uses: actions/upload-artifact@v2