Skip to content

Commit 7698bd8

Browse files
joseph-isaacslwwmanning
authored andcommitted
skip[ci]: wait for sccache in actions (#7237)
Sccache sometimes fails. This ensures we wait for it once Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk> Signed-off-by: Will Manning <will@willmanning.io>
1 parent c558ace commit 7698bd8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/setup-prebuild/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ runs:
3030
shell: bash
3131
run: |
3232
mkdir -p ~/.config/sccache
33-
echo 'server_startup_timeout_ms = 15000' > ~/.config/sccache/config
33+
echo 'server_startup_timeout_ms = 60000' > ~/.config/sccache/config
3434
3535
- name: Pre-start sccache server
3636
if: github.repository == 'vortex-data/vortex' && inputs.enable-sccache == 'true'
3737
shell: bash
38-
run: sccache --start-server &
38+
run: sccache --start-server
3939

4040
# Fallback path: full setup for forks
4141
- name: Full Rust setup

.github/actions/setup-rust/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ runs:
6969
shell: bash
7070
run: |
7171
mkdir -p ~/.config/sccache
72-
echo 'server_startup_timeout_ms = 15000' > ~/.config/sccache/config
72+
echo 'server_startup_timeout_ms = 60000' > ~/.config/sccache/config
7373
7474
- name: Rust Compile Cache
7575
if: inputs.enable-sccache == 'true'
@@ -78,7 +78,7 @@ runs:
7878
- name: Pre-start sccache server
7979
if: inputs.enable-sccache == 'true'
8080
shell: bash
81-
run: sccache --start-server &
81+
run: sccache --start-server
8282

8383
- name: Install Protoc (for lance-encoding build step)
8484
if: runner.os != 'Windows'

0 commit comments

Comments
 (0)