Skip to content

Commit edf46fd

Browse files
committed
name
1 parent d8d951e commit edf46fd

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
push:
66
tags:
7-
- 'v*'
7+
- '*'
88
workflow_dispatch:
99

1010
jobs:
@@ -19,6 +19,17 @@ jobs:
1919
with:
2020
sccache: s3
2121

22+
- name: Configure sccache timeout
23+
run: |
24+
mkdir -p ~/.config/sccache
25+
echo 'server_startup_timeout_ms = 60000' > ~/.config/sccache/config
26+
27+
- name: Install sccache
28+
uses: mozilla-actions/sccache-action@9e7fa8a12102821edf02ca5dbea1acd0f89a2696 # v0.0.10
29+
30+
- name: Pre-start sccache server
31+
run: sccache --start-server
32+
2233
- name: Install build tools
2334
run: |
2435
apt-get update
@@ -68,6 +79,7 @@ jobs:
6879
echo "$OUTPUT" | grep 'Usage:'
6980
7081
- name: Upload artifact
82+
if: startsWith(github.ref, 'refs/tags/')
7183
uses: actions/upload-artifact@v4
7284
with:
7385
name: cudf-test-harness-linux-x86_64

0 commit comments

Comments
 (0)