diff --git a/.github/workflows/prestocpp-linux-build.yml b/.github/workflows/prestocpp-linux-build.yml index c06066d2d178d..15d126cd6e25a 100644 --- a/.github/workflows/prestocpp-linux-build.yml +++ b/.github/workflows/prestocpp-linux-build.yml @@ -46,6 +46,9 @@ jobs: find . -name tests | xargs rm -r find . -name test | xargs rm -rf + - name: Disk space consumption before build + run: df + - name: Build engine run: | source /opt/rh/gcc-toolset-12/enable @@ -72,6 +75,9 @@ jobs: -DMAX_LINK_JOBS=4 ninja -C _build/debug -j 4 + - name: Disk space consumption after build + run: df + - name: Ccache after run: ccache -s