diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a930e997..9e25a909 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -704,10 +704,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 170f04df..c0252493 100755 --- a/ci/ci.sh +++ b/ci/ci.sh @@ -118,7 +118,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