-
Notifications
You must be signed in to change notification settings - Fork 27
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
chore(ci): remove space reclamation steps for GH runners #430
chore(ci): remove space reclamation steps for GH runners #430
Conversation
.github/workflows/pr-checks.yaml
Outdated
@@ -165,7 +165,7 @@ jobs: | |||
- name: Run Operator Upgrade | |||
shell: bash | |||
run: | | |||
./tests/run-e2e.sh --ci | |||
./tests/run-e2e.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets preserve --ci
since the flag can be used to decide on other things than run container rm
later.
.github/workflows/pr-checks.yaml
Outdated
- name: Run e2e tests | ||
run: | | ||
./tests/run-e2e.sh --ci --no-upgrade | ||
./tests/run-e2e.sh --no-upgrade |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here .. lets keep --ci
🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Requesting changes to keep the --ci
.. If docker images rm
isn't needed, lets remove that from the script instead
addf442
to
4da4a29
Compare
This commit removes the steps previously used to reclaim space on GH runners. Since we have moved to self-hosted runners with more resources available, these steps are no longer necessary Signed-off-by: vprashar2929 <[email protected]>
4da4a29
to
38a4cfa
Compare
This commit removes the steps previously used to reclaim space on GH runners. Since we have moved to self-hosted runners with more resources available, these steps are no longer necessary
Addresses: #429