Skip to content

Commit

Permalink
fix: smoke test disk space (#3338)
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas authored Nov 6, 2024
1 parent d3c73f5 commit 85f894f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/smoketest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ jobs:
if: github.event_name != 'pull_request' || github.event.action == 'enqueued' || contains( github.event.pull_request.labels.*.name, 'run-all')
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false

- name: Checkout the repository with full history
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -68,3 +75,7 @@ jobs:
with:
name: kube-report-smoke-test-upgrade
path: /tmp/ftl-kube-report/
- name: Print Disk Space
if: always()
run: |
df

0 comments on commit 85f894f

Please sign in to comment.