ci: Don't hardcode ABI version
This commit is contained in:
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@@ -652,10 +652,11 @@ jobs:
|
|||||||
|
|
||||||
- name: Symbol check
|
- name: Symbol check
|
||||||
if: ${{ matrix.configuration.symbol_check }}
|
if: ${{ matrix.configuration.symbol_check }}
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
py -3 --version
|
py -3 --version
|
||||||
py -3 -m pip install lief
|
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
|
- name: Check
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
2
ci/ci.sh
2
ci/ci.sh
@@ -113,7 +113,7 @@ then
|
|||||||
case "$HOST" in
|
case "$HOST" in
|
||||||
*mingw*)
|
*mingw*)
|
||||||
ls -l .libs
|
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
|
python3 ./tools/symbol-check.py .libs/libsecp256k1.so
|
||||||
|
|||||||
Reference in New Issue
Block a user