File tree Expand file tree Collapse file tree 1 file changed +7
-12
lines changed Expand file tree Collapse file tree 1 file changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -469,9 +469,14 @@ jobs:
469469 env : ${{ matrix.env_vars }}
470470 run : ./ci/ci.sh
471471
472- - name : Symbol check
472+ - &SYMBOL_CHECK_MACOS
473+ name : Symbol check
474+ env :
475+ VIRTUAL_ENV : ' ${{ github.workspace }}/venv'
473476 run : |
474477 python3 --version
478+ python3 -m venv $VIRTUAL_ENV
479+ export PATH="$VIRTUAL_ENV/bin:$PATH"
475480 python3 -m pip install lief
476481 python3 ./tools/symbol-check.py .libs/libsecp256k1.dylib
477482
@@ -512,17 +517,7 @@ jobs:
512517 ln -s $(brew --prefix gcc)/bin/gcc-?? /usr/local/bin/gcc
513518
514519 - *CI_SCRIPT_ON_HOST
515-
516- - name : Symbol check
517- env :
518- VIRTUAL_ENV : ' ${{ github.workspace }}/venv'
519- run : |
520- python3 --version
521- python3 -m venv $VIRTUAL_ENV
522- export PATH="$VIRTUAL_ENV/bin:$PATH"
523- python3 -m pip install lief
524- python3 ./tools/symbol-check.py .libs/libsecp256k1.dylib
525-
520+ - *SYMBOL_CHECK_MACOS
526521 - *PRINT_LOGS
527522
528523 win64-native :
You can’t perform that action at this time.
0 commit comments