Skip to content

Commit cabb016

Browse files
committed
debugging up in this bitch
1 parent 17ac5c4 commit cabb016

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

.github/workflows/nightly2.yml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,26 @@ jobs:
8080
export PYENV_ROOT="$HOME/.pyenv"
8181
export PATH="$PYENV_ROOT/bin:$PATH"
8282
eval "$(pyenv init --path)"
83-
pyenv install ${PYVER} -v
84-
sudo ln -sf $PYENV_ROOT/versions/${PYVER}/bin/python3 /usr/local/bin/python
83+
pyenv install $PYVER -v
84+
sudo ln -sf $PYENV_ROOT/versions/$PYVER/bin/python3 /usr/local/bin/python
85+
# https://gist.github.com/dukenmarga/3b055616ecef3b38a52de0ad81b67c2a
86+
# said to:
87+
# sudo ln -s /usr/local/lib64/python3.12/lib-dynload /usr/local/lib/python3.12/lib-dynload
88+
89+
- name: "What's in pyenv"
90+
run: |
91+
export PYENV_ROOT="$HOME/.pyenv"
92+
ls -lR $PYENV_ROOT/versions
93+
94+
- name: "What's in /usr/local/lib64"
95+
run: |
96+
export PYENV_ROOT="$HOME/.pyenv"
97+
ls -lR /usr/local/lib64
98+
99+
- name: "What's in /usr/local/lib"
100+
run: |
101+
export PYENV_ROOT="$HOME/.pyenv"
102+
ls -lR /usr/local/lib
85103
86104
- name: "Show diagnostic info"
87105
run: |

0 commit comments

Comments
 (0)