Skip to content

Commit a5185fc

Browse files
committed
debug: add CI environment debugging to identify module loading issue
- Add debug output to show working directory, file existence, and environment variables - Run only smoke test with verbose output to reduce noise - This will help identify why module_path manipulation fails in CI vs local
1 parent 27cd84b commit a5185fc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docker/docker-compose.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@ services:
1717
- >
1818
cmake --build build-cmake &&
1919
cmake --build build-cmake --target stage &&
20+
echo 'Debug CI environment:' &&
21+
pwd && ls -la /workspace/build-cmake/stage/lib/zsh/site-modules/ &&
22+
echo "ENV ZPMOD_STAGE_MODULE_DIR: $ZPMOD_STAGE_MODULE_DIR" &&
2023
export ZPMOD_STAGE_MODULE_DIR=/workspace/build-cmake/stage/lib/zsh/site-modules &&
21-
ctest --test-dir build-cmake --output-on-failure -j 2
24+
echo "After export: $ZPMOD_STAGE_MODULE_DIR" &&
25+
ctest --test-dir build-cmake -R zpmod_smoke --output-on-failure -V
2226
2327
# Full development environment testing
2428
test-full-dev:

0 commit comments

Comments
 (0)