Skip to content

Commit 3fe31e6

Browse files
committed
Debug statements
1 parent 76e945b commit 3fe31e6

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

.github/workflows/test-manual-wsl.yaml

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,34 @@ jobs:
9595
echo 'Changing to WSL workspace directory'
9696
echo $WSL_PWD
9797
cd '$WSL_PWD'
98-
ls -lha
99-
echo 'Testing '\$FEATURES' against '\$BASE_IMAGE' (log level '\$LOG_LEVEL')'
98+
99+
# Debug: Check current directory and files
100+
echo 'Current directory:'
101+
pwd
102+
echo 'Directory contents:'
103+
ls -la
104+
105+
# Debug: Check if feature directories exist
106+
echo 'Feature directories:'
107+
ls -la src/
108+
109+
# Debug: Check specific feature install.sh files
110+
echo 'Checking common-utils feature:'
111+
ls -la src/common-utils/
112+
113+
# Debug: Check if install.sh is executable
114+
if [ -f src/common-utils/install.sh ]; then
115+
echo 'install.sh exists, checking permissions:'
116+
ls -l src/common-utils/install.sh
117+
file src/common-utils/install.sh
118+
else
119+
echo 'install.sh not found!'
120+
fi
121+
122+
# Make sure scripts are executable
123+
find src/ -name '*.sh' -exec chmod +x {} \;
124+
125+
echo 'Testing common-utils against base image (log level trace)'
100126
devcontainer features test \
101127
--features \"common-utils\" \
102128
--base-image \"mcr.microsoft.com/devcontainers/base:dev-debian-12\" \

0 commit comments

Comments
 (0)