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

Minor nit to not re-enable sql_log_bin + free disk space on gh runner before running tests #339

Merged
merged 3 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
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: 11 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,17 @@ jobs:
run: |
pipx install tox
pipx install poetry
- name: Free disk space
run: |
echo "Free disk space before cleanup"
df -T
# free space in the runner
Comment on lines +116 to +120
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- name: Free disk space
run: |
echo "Free disk space before cleanup"
df -T
# free space in the runner
- name: Free up disk space
run: |
echo "Free disk space before cleanup"
df -T
# From https://github.com/actions/runner-images/issues/2840#issuecomment-790492173

nit

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will commit nit in the next PR to avoid rerunning tests

sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf /usr/local/share/boost
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
echo "Free disk space after cleanup"
df -T
- name: Setup operator environment
uses: charmed-kubernetes/actions-operator@main
with:
Expand Down
Loading