Skip to content

Commit

Permalink
df -h
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Guerra <[email protected]>
  • Loading branch information
LucaGuerra committed Nov 6, 2024
1 parent 928949f commit 846e71c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/reusable_build_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ jobs:
runs-on: ${{ (inputs.arch == 'aarch64' && 'oracle-aarch64-4cpu-16gb') || 'ubuntu-latest' }}
needs: [build-modern-bpf-skeleton]
steps:
- name: Check runner available disk 1
run: df -h

# Always install deps before invoking checkout action, to properly perform a full clone.
- name: Install build deps
run: |
Expand Down Expand Up @@ -86,10 +89,16 @@ jobs:
-DUSE_ASAN=${{ (inputs.sanitizers == true && inputs.arch == 'x86_64' && 'ON') || 'OFF' }} \
-DFALCO_VERSION=${{ inputs.version }}
- name: Check runner available disk 2
run: df -h

- name: Build project
run: |
cmake --build build --target falco -j6
- name: Check runner available disk 3
run: df -h

- name: Build packages
run: |
cmake --build build --target package
Expand Down

0 comments on commit 846e71c

Please sign in to comment.