File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -129,9 +129,17 @@ jobs:
129129 - name : Update conda and install conda build
130130 run : |
131131 set -x
132+ pwd
133+ ls -lA
134+ test -d .cache && exit 1
132135 # Is update really needed?
133136 rapids-mamba-retry update --all -y -n base
134137 conda install -y conda-build
138+ - name : Cache caches
139+ uses : actions/cache@v5
140+ with :
141+ path : .cache
142+ key : ${{ matrix.ARCH }}-${{ matrix.PY_VER }}
135143 - name : Install python
136144 env :
137145 PYTHON_VERSION : ${{ matrix.PY_VER }}
Original file line number Diff line number Diff line change @@ -38,7 +38,9 @@ sccache --show-adv-stats
3838echo $HOME
3939pwd
4040cd $HOME
41- find .cache -type f
41+ find $( ls -A $HOME ) -type f
4242ls -la $HOME /
4343du -shc $( ls -A $HOME )
44+ conda env list
45+ conda info
4446exit 1
You can’t perform that action at this time.
0 commit comments