Skip to content

Commit bc5e86d

Browse files
author
Tim Middleton
committed
Correct kind scripts
1 parent 6aef73a commit bc5e86d

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/build-kind.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767
shell: bash
6868
run: |
6969
NAMESPACE=coherence-perf
70-
kubectl exec -it -n $NAMESPACE perf-cluster-0 -c coherence -- /coherence-operator/utils/cohctl get caches -o wide
70+
kubectl exec -it -n $NAMESPACE perf-cluster-0 -c coherence -- /coherence-operator/utils/cohctl get caches -o wide
71+
make deploy-test-schools
7172
# Put the tail into the background
7273
POD=$(kubectl get pods -n $NAMESPACE | grep perf-go-client | awk '{print $1}')
7374
kubectl logs $POD -n $NAMESPACE -f > build/_output/test-logs/perf-go-client.log 2>&1 &
@@ -88,6 +89,12 @@ jobs:
8889
run: |
8990
make kind-stop
9091
92+
- uses: actions/upload-artifact@v4
93+
if: failure()
94+
with:
95+
name: test-output-${{ matrix.go-version }}-failure-logs
96+
path: build/_output/test-logs
97+
9198
- uses: actions/upload-artifact@v4
9299
with:
93100
name: test-output-${{ matrix.go-version }}-test-logs

scripts/kind/test-schools.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
- name: TEST_TYPE
2626
value: "runTest"
2727
- name: COHERENCE_LOG_LEVEL
28-
value: "ALL"
28+
value: "DEBUG"
2929
resources:
3030
requests:
3131
memory: "512Mi"

0 commit comments

Comments
 (0)