File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change 69
69
echo "After removing files:"
70
70
df -h
71
71
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
-
89
72
- name : Run e2e tests
90
73
run : devbox run -- make e2e-test E2E_LABEL='provider:${{ inputs.provider }}' E2E_SKIP='${{ inputs.skip }}' E2E_FOCUS='${{ inputs.focus }}' E2E_VERBOSE=true
91
74
env :
101
84
NUTANIX_SUBNET_NAME : ${{ vars.NUTANIX_SUBNET_NAME }}
102
85
NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME : ${{ vars.NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME }}
103
86
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 }}
105
87
106
88
- if : success() || failure() # always run even if the previous step fails
107
89
name : Publish e2e test report
You can’t perform that action at this time.
0 commit comments