Disk space tuning in CI test code
This commit is contained in:
parent
7294ce61bc
commit
1171dfa950
@ -67,6 +67,17 @@ rlJournalStart
|
|||||||
rlLogInfo "COLLECTIONS=$COLLECTIONS"
|
rlLogInfo "COLLECTIONS=$COLLECTIONS"
|
||||||
rlLogInfo "SKIP_COLLECTION_METAPACKAGE_CHECK=$SKIP_COLLECTION_METAPACKAGE_CHECK"
|
rlLogInfo "SKIP_COLLECTION_METAPACKAGE_CHECK=$SKIP_COLLECTION_METAPACKAGE_CHECK"
|
||||||
|
|
||||||
|
# We'll use a lot of disk space (tens of GBs at least). The root FS
|
||||||
|
# often is the most beefy one in CI environemnts. Let's use it but also
|
||||||
|
# let's log what's actually available.
|
||||||
|
export TMPDIR=/test_tmp_root
|
||||||
|
rlRun "mkdir -p $TMPDIR"
|
||||||
|
rlLogInfo "TMPDIR=$TMPDIR"
|
||||||
|
rlLogInfo 'Disk space:'
|
||||||
|
df -h | while read line; do
|
||||||
|
rlLogInfo " $line"
|
||||||
|
done
|
||||||
|
|
||||||
# We optionally need to skip checking for the presence of the metapackage
|
# We optionally need to skip checking for the presence of the metapackage
|
||||||
# because that would pull in all the dependent toolset subrpms. We do not
|
# because that would pull in all the dependent toolset subrpms. We do not
|
||||||
# always want that, especially in CI.
|
# always want that, especially in CI.
|
||||||
|
Loading…
Reference in New Issue
Block a user