Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set sccache timeout #432

Open
wants to merge 4 commits into
base: branch-25.02
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .devcontainer/rapids.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

ARG BASE
ARG PYTHON_PACKAGE_MANAGER=conda
ENV SCCACHE_IDLE_TIMEOUT=900

FROM ${BASE} as pip-base

Expand Down Expand Up @@ -31,6 +30,8 @@ ENV DEFAULT_VIRTUAL_ENV=rapids

ENV RAPIDS_LIBUCX_PREFER_SYSTEM_LIBRARY=true

ENV SCCACHE_IDLE_TIMEOUT=900

vyasr marked this conversation as resolved.
Show resolved Hide resolved
trxcllnt marked this conversation as resolved.
Show resolved Hide resolved
FROM ${BASE} as conda-base

ENV DEFAULT_CONDA_ENV=rapids
Expand All @@ -50,6 +51,7 @@ ENV PYTHONDONTWRITEBYTECODE="1"

ENV SCCACHE_REGION="us-east-2"
ENV SCCACHE_BUCKET="rapids-sccache-devs"
ENV SCCACHE_IDLE_TIMEOUT=900
ENV AWS_ROLE_ARN="arn:aws:iam::279114543810:role/nv-gha-token-sccache-devs"

ENV HISTFILE="/home/coder/.cache/._bash_history"
Expand Down
Loading