Skip to content

Commit

Permalink
Merge branch 'minor/ci-info'
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianDeconinck committed Aug 22, 2023
2 parents ce52517 + 08d92f7 commit 6004520
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions geosongpu_ci/pipeline/ci_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@ def run_action(
metadata: Dict[str, Any],
):
super().__init__(skip_metadata=True)
r = ShellScript("showquota").write(["showquota"]).execute()
print(r)
ShellScript("showquota").write(
[
"showquota",
"cd /discover/nobackup/gmao_ci/",
"du -a | cut -d/ -f2 | sort | uniq -c | sort -nr",
]
).execute()

def check(
self,
Expand Down

0 comments on commit 6004520

Please sign in to comment.