We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0b28e6 commit 2ccbbe2Copy full SHA for 2ccbbe2
.github/workflows/conda-python-build.yaml
@@ -129,16 +129,17 @@ jobs:
129
- name: Update conda and install conda build
130
run: |
131
set -x
132
- pwd
133
- ls -lA
134
- test -d .cache && exit 1
+
+ ls -lA $HOME
+ test -d $HOME/.cache && exit 1
135
136
# Is update really needed?
137
rapids-mamba-retry update --all -y -n base
138
conda install -y conda-build
139
- name: Cache caches
140
uses: actions/cache@v5
141
with:
- path: .cache
142
+ path: /opt/conda/pkgs
143
key: ${{ matrix.ARCH }}-${{ matrix.PY_VER }}
144
- name: Install python
145
env:
ci/build_conda_python.sh
@@ -43,4 +43,4 @@ ls -la $HOME/
43
du -shc $(ls -A $HOME)
44
conda env list
45
conda info
46
-exit 1
+# exit 1
0 commit comments