From f67b0ac1a0ac1b8fa5d574cd0662231f071435fc Mon Sep 17 00:00:00 2001 From: Tim Ruffing Date: Mon, 21 Jul 2025 16:35:16 +0200 Subject: [PATCH] ci: Don't hardcode ABI version --- .github/workflows/ci.yml | 3 ++- ci/ci.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 805281c3..d5196c53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -652,10 +652,11 @@ jobs: - name: Symbol check if: ${{ matrix.configuration.symbol_check }} + shell: bash run: | py -3 --version py -3 -m pip install lief - py -3 .\tools\symbol-check.py build\bin\RelWithDebInfo\libsecp256k1-5.dll + py -3 ./tools/symbol-check.py build/bin/RelWithDebInfo/libsecp256k1-*.dll - name: Check run: | diff --git a/ci/ci.sh b/ci/ci.sh index 3285ecc9..08e84efd 100755 --- a/ci/ci.sh +++ b/ci/ci.sh @@ -113,7 +113,7 @@ then case "$HOST" in *mingw*) ls -l .libs - python3 ./tools/symbol-check.py .libs/libsecp256k1-5.dll + python3 ./tools/symbol-check.py .libs/libsecp256k1-*.dll ;; *) python3 ./tools/symbol-check.py .libs/libsecp256k1.so