Skip to content

Commit b68ce63

Browse files
authored
DEBUG: Check if recent sccache is causing build failures
1 parent 0e41ffa commit b68ce63

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/build-wheel.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,11 @@ jobs:
4646

4747
- name: Install latest rapidsai/sccache
4848
if: ${{ startsWith(inputs.host-platform, 'linux') }}
49+
env:
50+
SCCACHE_TAG: v0.14.0-rapids.3
4951
run: |
50-
curl -fsSL "https://github.com/rapidsai/sccache/releases/latest/download/sccache-$(uname -m)-unknown-linux-musl.tar.gz" \
52+
# curl -fsSL "https://github.com/rapidsai/sccache/releases/latest/download/sccache-$(uname -m)-unknown-linux-musl.tar.gz" \
53+
curl -fsSL "https://github.com/rapidsai/sccache/releases/download/${{ env.SCCACHE_TAG }}/sccache-${{ env.SCCACHE_TAG }}-$(uname -m)-unknown-linux-musl.tar.gz" \
5154
| sudo tar -C /usr/local/bin -xvzf - --wildcards --strip-components=1 -x '*/sccache'
5255
echo "SCCACHE_PATH=/usr/local/bin/sccache" >> "$GITHUB_ENV"
5356
echo "SCCACHE_GHA_USE_PREPROCESSOR_CACHE_MODE=true" >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)