We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f29a975 commit 8ab3c49Copy full SHA for 8ab3c49
ci/build_conda_python.sh
@@ -27,8 +27,15 @@ rapids-logger "Begin py build"
27
28
sccache --zero-stats
29
30
-rapids-conda-retry build conda/recipes/ast_canopy
31
-rapids-conda-retry build conda/recipes/numbast
32
-rapids-conda-retry build conda/recipes/numbast_extensions
+for pkg in ast_canopy numbast{,_extensions}; do
+ command time -a -o time.txt rapids-conda-retry build "conda/recipes/${pkg}"
+done
33
+
34
+cat time.txt
35
36
sccache --show-adv-stats
37
38
+echo $HOME
39
+ls -la $HOME/
40
+du -shc $(ls -A $HOME)
41
+exit 1
0 commit comments