Skip to content

Commit

Permalink
ci/workflows: fix sysdump name typo
Browse files Browse the repository at this point in the history
Fixes an typo introduced with commit 3b69444

Signed-off-by: Birol Bilgin <birol@cilium.io>
  • Loading branch information
brlbil authored and borkmann committed Jun 22, 2023
1 parent 33853e1 commit f0637a7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conformance-eks-v1.11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ jobs:
run: |
kubectl get pods --all-namespaces -o wide
cilium status
cilium sysdump --output-filename cilium-sysdump-final-${{ join(matrix.*, "-") }}
cilium sysdump --output-filename cilium-sysdump-final-${{ join(matrix.*, '-') }}
shell: bash {0} # Disable default fail-fast behaviour so that all commands run independently

- name: Clean up EKS
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conformance-eks-v1.12.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ jobs:
run: |
kubectl get pods --all-namespaces -o wide
cilium status
cilium sysdump --output-filename cilium-sysdump-final-${{ join(matrix.*, "-") }}
cilium sysdump --output-filename cilium-sysdump-final-${{ join(matrix.*, '-') }}
shell: bash {0} # Disable default fail-fast behaviour so that all commands run independently

- name: Clean up EKS
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conformance-eks-v1.13.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ jobs:
run: |
kubectl get pods --all-namespaces -o wide
cilium status
cilium sysdump --output-filename cilium-sysdump-final-${{ join(matrix.*, "-") }}
cilium sysdump --output-filename cilium-sysdump-final-${{ join(matrix.*, '-') }}
shell: bash {0} # Disable default fail-fast behaviour so that all commands run independently

- name: Clean up EKS
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conformance-eks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ jobs:
run: |
kubectl get pods --all-namespaces -o wide
cilium status
cilium sysdump --output-filename cilium-sysdump-final-${{ join(matrix.*, "-") }}
cilium sysdump --output-filename cilium-sysdump-final-${{ join(matrix.*, '-') }}
shell: bash {0} # Disable default fail-fast behaviour so that all commands run independently

- name: Clean up EKS
Expand Down

0 comments on commit f0637a7

Please sign in to comment.