Skip to content

Commit

Permalink
test3
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuzzbawls committed Jun 19, 2024
1 parent 86e4311 commit d28c28f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,9 @@ jobs:
brew install ${{ matrix.config.packages }}
pip install ds_store mac_alias
fi
PYTHONPATH=$Python_ROOT_DIR/bin/
PYTHONPATH=$pythonLocation/bin/
export PYTHONPATH
echo $PYTHONPATH
- name: ccache cache files
uses: actions/cache@v4
Expand All @@ -268,9 +269,11 @@ jobs:

- name: Configure Native Wallet
run: |
echo $PATH
PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
# Add llvm-symbolizer directory to PATH. Needed to get symbolized stack traces from the sanitizers.
PATH=$PATH:/usr/lib/llvm-6.0/bin/
echo $PATH
export PATH
if [[ ${{ matrix.config.os }} = macos* ]]; then
Expand Down

0 comments on commit d28c28f

Please sign in to comment.