Skip to content
Snippets Groups Projects
Commit 524189a2 authored by Dmitry Kalinkin's avatar Dmitry Kalinkin
Browse files

Edit .gitlab-ci.yml

parent f79b1279
Branches
No related tags found
1 merge request!168Draft: run du
Pipeline #121590 failed
......@@ -79,8 +79,8 @@ common:setup:
mount
if [ -n "${RM}" ] ; then rm -rf $RM ; fi
for file in $(find /scratch/snakemake-cache -type f); do
if file -b "$file" | grep -E '^ROOT file'; then
rootls "$file" 2>/dev/null || echo "$file is broken"
if file -b "$file" | grep -E '^ROOT file' >/dev/null; then
rootls "$file" 2>/dev/null && echo "$file is not broken" || echo "$file is broken"
fi
done
find `realpath /scratch` -type l -print0 | (du -sL --files0-from=- || true) | sort -n > /tmp/df
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment