Skip to content

Commit f67b0ac

Browse files
ci: Don't hardcode ABI version
1 parent 020ee60 commit f67b0ac

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,10 +652,11 @@ jobs:
652652
653653
- name: Symbol check
654654
if: ${{ matrix.configuration.symbol_check }}
655+
shell: bash
655656
run: |
656657
py -3 --version
657658
py -3 -m pip install lief
658-
py -3 .\tools\symbol-check.py build\bin\RelWithDebInfo\libsecp256k1-5.dll
659+
py -3 ./tools/symbol-check.py build/bin/RelWithDebInfo/libsecp256k1-*.dll
659660
660661
- name: Check
661662
run: |

ci/ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ then
113113
case "$HOST" in
114114
*mingw*)
115115
ls -l .libs
116-
python3 ./tools/symbol-check.py .libs/libsecp256k1-5.dll
116+
python3 ./tools/symbol-check.py .libs/libsecp256k1-*.dll
117117
;;
118118
*)
119119
python3 ./tools/symbol-check.py .libs/libsecp256k1.so

0 commit comments

Comments
 (0)