Skip to content

Commit

Permalink
Update end-to-end-test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
KRANTHI0918 authored Mar 5, 2024
1 parent e23c08f commit eddacbe
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/end-to-end-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,25 @@ jobs:
if: ${{ github.event.label.name == 'ready-to-test' }}
runs-on: ubuntu-20.04
steps:
- name: Check disk space
run: df . -h

- name: Free disk space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Check disk space
run: |
df . -h
- name: checkout the repo
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Check working space directory
run: du ${GITHUB_WORKSPACE} -h -d 1

- name: Set outputs
id: vars
Expand Down Expand Up @@ -81,6 +96,12 @@ jobs:
bash .github/workflows/scripts/start-kind.sh
env:
GITHUB_HEAD_COMMIT: ${{ steps.vars.outputs.sha_commit }}

- name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache

- name: Check disk space
run: df . -h

- name: Docker Run Action
uses: addnab/docker-run-action@v3
Expand Down

0 comments on commit eddacbe

Please sign in to comment.