File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -220,11 +220,11 @@ jobs:
220220 - name : Check python, uv paths
221221 run : |
222222 echo $PATH
223- which python
224- which python3
225- python --version
226- python3 --version
227- which uv || true
223+ echo -n 'which python: ' && which python
224+ echo -n 'which python3: ' && which python3
225+ echo -n 'python version: ' && python --version
226+ echo -n 'python3 version: ' python3 --version
227+ which uv || echo "No python uv; continuing"
228228
229229 - name : Install Conan
230230 id : conan
@@ -349,7 +349,9 @@ jobs:
349349 # Create and sign headers/libs tarball
350350 - name : Create headers/libs tarball
351351 run : |
352+ echo -n 'Build dir ${{ env.BUILD_DIR }}: ' && ls -l ${{ env.BUILD_DIR }}
352353 (cd ${{ env.BUILD_DIR }} && find . -name "lib*") > ./libfiles.txt
354+ echo 'libfiles.txt: ' && cat libfiles.txt
353355 tar -czf openfx-$RELEASE_NAME.tar.gz \
354356 -C ${{ env.BUILD_DIR }}
355357 -T ./libfiles.txt \
You can’t perform that action at this time.
0 commit comments