forked from spidernet-io/spiderpool
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: tao.yang <[email protected]>
- Loading branch information
Showing
3 changed files
with
113 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,6 +152,18 @@ jobs: | |
-e INSTALL_RDMA=true \ | ||
-e INSTALL_SRIOV=true | ||
- name: check Free Disk Space (Ubuntu) | ||
run: | | ||
echo "df -h" | ||
df -h | ||
echo "lsblk" | ||
lsblk | ||
- name: check kind node list | ||
run: | | ||
echo "kind node list" | ||
kind get clusters | ||
- name: Run e2e Test | ||
id: run_e2e | ||
continue-on-error: true | ||
|
@@ -181,6 +193,18 @@ jobs: | |
echo "UPLOAD_E2E_REPORT=false" >> $GITHUB_ENV | ||
fi | ||
- name: check kind node list | ||
run: | | ||
echo "kind node list" | ||
kind get clusters | ||
- name: check Free Disk Space (Ubuntu) | ||
run: | | ||
echo "df -h" | ||
df -h | ||
echo "lsblk" | ||
lsblk | ||
- name: Upload e2e log | ||
if: ${{ inputs.run_e2e == 'true' }} | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters