Skip to content

Commit eab756e

Browse files
committed
debug ci
1 parent 8a999c0 commit eab756e

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.github/workflows/mlflow-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ jobs:
4242
- name: Add Helm repositories
4343
run: |
4444
cd applications/mlflow
45-
make add-helm-repositories
45+
make debug-env
46+
make debug-helm
4647
4748
- name: Lint charts
4849
run: |

applications/mlflow/Makefile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,25 @@ clean-templates:
153153

154154
.PHONY: clean
155155
clean: clean-charts clean-templates
156+
157+
# Debug target to print environment information
158+
.PHONY: debug-env
159+
debug-env:
160+
echo "=== Debug Environment Information ==="
161+
echo "Shell: $${SHELL}"
162+
echo "PATH: $${PATH}"
163+
which helm || echo "helm not found in PATH"
164+
echo "Current directory: $$(pwd)"
165+
echo "Directory listing:"
166+
ls -la
167+
echo "=== End Debug Info ==="
168+
169+
# Debug target for testing helm repo commands
170+
.PHONY: debug-helm
171+
debug-helm:
172+
echo "=== Testing Helm Commands ==="
173+
echo "Helm version:"
174+
helm version
175+
echo "Testing repo add command:"
176+
helm repo list
177+
echo "=== End Helm Tests ==="

0 commit comments

Comments
 (0)