Skip to content

Commit 64907f7

Browse files
ci: Debug mise and uvx installs (#124)
1 parent da3e67c commit 64907f7

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/actions/mise-project-setup/action.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,19 @@ runs:
9797
# Unset in case it is set by an earlier run of this action
9898
unset UV_PYTHON_DOWNLOADS
9999
100+
echo "PATH=${PATH}"
101+
102+
set -x
100103
for dir in $DIRECTORIES; do
101104
echo "::group::Install mise tools: $dir"
102105
pushd "$dir"
106+
which python || true
107+
which python3 || true
103108
mise upgrade
104109
popd
105110
echo "::endgroup::"
106111
done
112+
set +x
107113
108114
echo ::group::Mise prune
109115
mise prune

.github/actions/mise-project-setup/init.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ echo "::group::Environment variable changes"
8888
echo -n "RUSTUP_HOME="
8989
echo "${rustup_home}" | tr -d '\n'
9090
echo
91+
92+
echo MISE_DEBUG=1
93+
echo RUST_LOG=uv=debug
9194
} | tee -a "${GITHUB_ENV}"
9295
echo "::endgroup::"
9396

0 commit comments

Comments
 (0)