Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update end-to-end-test.yaml #355

Merged
merged 1 commit into from
Mar 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/end-to-end-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ jobs:
with:
name: trivy-scan
path: scan.txt

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

- name: build kind clusters
run: |
Expand All @@ -105,20 +108,14 @@ jobs:

- name: Build the e2e image
run: sudo docker build . -t aveshadev/kubeslice-e2e:latest

- 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
with:
image: aveshadev/kubeslice-e2e:latest
options: -v ${{ github.workspace }}/reports:/e2e/reports -v /home/runner/.kube:/e2e/assets/kubeconfig -v ${{ github.workspace }}/profile:/e2e/profile --network kind
run: |
sh run.sh kind
bash run.sh kind

- name: Check disk space
run: |
Expand Down
Loading