Skip to content

Commit f0b28e6

Browse files
committed
debug
1 parent f1ca3f3 commit f0b28e6

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/conda-python-build.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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 }}

ci/build_conda_python.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ sccache --show-adv-stats
3838
echo $HOME
3939
pwd
4040
cd $HOME
41-
find .cache -type f
41+
find $(ls -A $HOME) -type f
4242
ls -la $HOME/
4343
du -shc $(ls -A $HOME)
44+
conda env list
45+
conda info
4446
exit 1

0 commit comments

Comments
 (0)