Skip to content

Commit 83a223e

Browse files
committed
install and init
1 parent a0854c0 commit 83a223e

2 files changed

Lines changed: 12 additions & 6 deletions

File tree

.github/workflows/ci.cpu.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,12 @@ jobs:
8989
run: |
9090
set -ex;
9191
92-
sudo pkill -9 sccache || :;
93-
sudo rm -f .cache/*.log;
94-
devcontainer-utils-post-attach-command;
92+
devcontainer-utils-install-sccache --repo rapidsai/sccache --version rapids;
93+
devcontainer-utils-init-sccache-dist \
94+
--enable-sccache-dist - <<< " \
95+
--auth-type 'token' \
96+
--auth-token '${SCCACHE_DIST_TOKEN}' \
97+
";
9598
9699
# Copy source folder into ~/stdexec
97100
cp -r "${GITHUB_WORKSPACE}"/stdexec ~/;

.github/workflows/ci.gpu.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,12 @@ jobs:
101101
102102
set -x;
103103
104-
sudo pkill -9 sccache || :;
105-
sudo rm -f .cache/*.log;
106-
devcontainer-utils-post-attach-command;
104+
devcontainer-utils-install-sccache --repo rapidsai/sccache --version rapids;
105+
devcontainer-utils-init-sccache-dist \
106+
--enable-sccache-dist - <<< " \
107+
--auth-type 'token' \
108+
--auth-token '${SCCACHE_DIST_TOKEN}' \
109+
";
107110
108111
# Copy source folder into ~/stdexec
109112
cp -r "${GITHUB_WORKSPACE}"/stdexec ~/;

0 commit comments

Comments
 (0)