We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df76383 commit 548261bCopy full SHA for 548261b
.github/workflows/conda-python-build.yaml
@@ -188,15 +188,14 @@ jobs:
188
id: cache-sccache
189
uses: actions/cache@v5
190
with:
191
- # Miniforge job container runs as root; ~/.sccache is /root/.sccache
192
- path: /root/.cache/sccache
+ path: /github/home/.cache/sccache
193
key: sccache-${{ matrix.ARCH }}-${{ matrix.PY_VER }}
194
- name: Check sccache
195
if: steps.cache-sccache.outputs.cache-hit == 'true'
196
run: |
197
set -x
198
- ls -lh "${HOME}/.cache/sccache"
199
- du -sh "${HOME}/.cache/sccache"
+ ls -lh /github/home/.cache/sccache
+ du -sh /github/home/.cache/sccache
200
- name: Build Conda Package
201
run: ${{ inputs.script }}
202
env:
0 commit comments