mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:11:45 +03:00
appveyor: show disk space used in each job
Also bump minimum dir size in GHA, to reduce details.
Follow-up to be71475b13 #18150
Closes #18235
This commit is contained in:
parent
dda251ef10
commit
869506d2da
2 changed files with 12 additions and 5 deletions
10
.github/workflows/windows.yml
vendored
10
.github/workflows/windows.yml
vendored
|
|
@ -183,7 +183,7 @@ jobs:
|
|||
fi
|
||||
|
||||
- name: 'disk space used'
|
||||
run: du -sh .; echo; du -sh -t 250KB ./*; echo; du -h -t 50KB bld
|
||||
run: du -sh .; echo; du -sh -t 250KB ./*; echo; du -h -t 250KB bld
|
||||
|
||||
msys2: # both msys and mingw-w64
|
||||
name: "${{ matrix.sys == 'msys' && 'msys2' || 'mingw' }}, ${{ matrix.build == 'cmake' && 'CM' || 'AM' }} ${{ matrix.env }} ${{ matrix.name }} ${{ matrix.test }}"
|
||||
|
|
@ -410,7 +410,7 @@ jobs:
|
|||
fi
|
||||
|
||||
- name: 'disk space used'
|
||||
run: du -sh .; echo; du -sh -t 250KB ./*; echo; du -h -t 50KB bld
|
||||
run: du -sh .; echo; du -sh -t 250KB ./*; echo; du -h -t 250KB bld
|
||||
|
||||
mingw-w64-standalone-downloads:
|
||||
name: 'dl-mingw, CM ${{ matrix.ver }}-${{ matrix.env }} ${{ matrix.name }}'
|
||||
|
|
@ -592,7 +592,7 @@ jobs:
|
|||
cmake --build bld --target curl-examples
|
||||
|
||||
- name: 'disk space used'
|
||||
run: du -sh .; echo; du -sh -t 250KB ./*; echo; du -h -t 50KB bld
|
||||
run: du -sh .; echo; du -sh -t 250KB ./*; echo; du -h -t 250KB bld
|
||||
|
||||
linux-cross-mingw-w64:
|
||||
name: "linux-mingw, ${{ matrix.build == 'cmake' && 'CM' || 'AM' }} ${{ matrix.compiler }}"
|
||||
|
|
@ -693,7 +693,7 @@ jobs:
|
|||
fi
|
||||
|
||||
- name: 'disk space used'
|
||||
run: du -sh .; echo; du -sh -t 250KB ./*; echo; du -h -t 50KB bld
|
||||
run: du -sh .; echo; du -sh -t 250KB ./*; echo; du -h -t 250KB bld
|
||||
|
||||
msvc:
|
||||
name: 'msvc, CM ${{ matrix.arch }}-${{ matrix.plat }} ${{ matrix.name }}'
|
||||
|
|
@ -938,4 +938,4 @@ jobs:
|
|||
run: cmake --build bld --config "${MATRIX_TYPE}" --parallel 5 --target curl-examples
|
||||
|
||||
- name: 'disk space used'
|
||||
run: du -sh .; echo; du -sh -t 250KB ./*; echo; du -h -t 50KB bld
|
||||
run: du -sh .; echo; du -sh -t 250KB ./*; echo; du -h -t 250KB bld
|
||||
|
|
|
|||
|
|
@ -165,3 +165,10 @@ if [ "${EXAMPLES}" = 'ON' ] && \
|
|||
[ "${BUILD_SYSTEM}" = 'CMake' ]; then
|
||||
time cmake --build _bld --config "${PRJ_CFG}" --parallel 2 --target curl-examples
|
||||
fi
|
||||
|
||||
# disk space used
|
||||
|
||||
du -sh .; echo; du -sh -t 250KB ./*
|
||||
if [ "${BUILD_SYSTEM}" = 'CMake' ]; then
|
||||
echo; du -h -t 250KB _bld
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue