mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-05-04 07:24:46 +00:00
gitlab: Allow du to fail in cerbero scripts
It's purely for informative reasons. `du` will fail on the sources dir if a branch name has unicode in it due to an MSYS/MinGW bug. The long term fix is to from MSYS/MinGW to MSYS/MinGW-W64 or MSYS2/MinGW-W64. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/395>
This commit is contained in:
parent
114ce593ef
commit
26a990454c
1 changed files with 2 additions and 2 deletions
|
@ -96,7 +96,7 @@ cerbero_before_script() {
|
|||
if ! [[ -d ${CERBERO_SOURCES} ]]; then
|
||||
time cp -a "${CERBERO_HOST_DIR}/${CERBERO_SOURCES}" .
|
||||
fi
|
||||
du -sch "${CERBERO_SOURCES}"
|
||||
du -sch "${CERBERO_SOURCES}" || true
|
||||
|
||||
echo "home_dir = \"$(pwd_native)/${CERBERO_HOME}\"" > localconf.cbc
|
||||
echo "local_sources = \"$(pwd_native)/${CERBERO_SOURCES}\"" >> localconf.cbc
|
||||
|
@ -122,7 +122,7 @@ cerbero_script() {
|
|||
$CERBERO $CERBERO_ARGS show-config
|
||||
$CERBERO $CERBERO_ARGS fetch-bootstrap
|
||||
$CERBERO $CERBERO_ARGS fetch-package --deps gstreamer-1.0
|
||||
du -sch "${CERBERO_SOURCES}"
|
||||
du -sch "${CERBERO_SOURCES}" || true
|
||||
|
||||
$CERBERO $CERBERO_ARGS fetch-cache --branch "${GST_UPSTREAM_BRANCH}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue