Skip to content

Commit 9ca2865

Browse files
committed
fixup! ci: Remove unnecessary step to get CP endpoint IP
1 parent 5eab145 commit 9ca2865

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

.github/workflows/e2e.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -69,23 +69,6 @@ jobs:
6969
echo "After removing files:"
7070
df -h
7171
72-
- name: Get Control Plane endpoint IP
73-
id: get-control-plane-endpoint-ip
74-
if: inputs.provider == 'Nutanix'
75-
run: |
76-
export CONTROL_PLANE_ENDPOINT_RANGE_START="${{ vars.NUTANIX_CONTROL_PLANE_ENDPOINT_RANGE_START }}"
77-
export CONTROL_PLANE_ENDPOINT_RANGE_END="${{ vars.NUTANIX_CONTROL_PLANE_ENDPOINT_RANGE_END }}"
78-
control_plane_endpoint_ip="$(devbox run -- make nutanix-cp-endpoint-ip)"
79-
echo "control_plane_endpoint_ip=${control_plane_endpoint_ip}" >> "${GITHUB_OUTPUT}"
80-
81-
- name: Check Control Plane endpoint IP
82-
if: inputs.provider == 'Nutanix'
83-
run: |
84-
if [[ -z "${{ steps.get-control-plane-endpoint-ip.outputs.control_plane_endpoint_ip }}" ]]; then
85-
echo "control_plane_endpoint_ip is empty; cannot proceed with e2e tests"
86-
exit 1
87-
fi
88-
8972
- name: Run e2e tests
9073
run: devbox run -- make e2e-test E2E_LABEL='provider:${{ inputs.provider }}' E2E_SKIP='${{ inputs.skip }}' E2E_FOCUS='${{ inputs.focus }}' E2E_VERBOSE=true
9174
env:
@@ -101,7 +84,6 @@ jobs:
10184
NUTANIX_SUBNET_NAME: ${{ vars.NUTANIX_SUBNET_NAME }}
10285
NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME: ${{ vars.NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME }}
10386
NUTANIX_STORAGE_CONTAINER_NAME: ${{ vars.NUTANIX_STORAGE_CONTAINER_NAME }}
104-
CONTROL_PLANE_ENDPOINT_IP: ${{ steps.get-control-plane-endpoint-ip.outputs.control_plane_endpoint_ip }}
10587

10688
- if: success() || failure() # always run even if the previous step fails
10789
name: Publish e2e test report

0 commit comments

Comments
 (0)