We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8d951e commit edf46fdCopy full SHA for edf46fd
1 file changed
.github/workflows/release.yml .github/workflows/ci.yml.github/workflows/release.yml renamed to .github/workflows/ci.yml
@@ -4,7 +4,7 @@ on:
4
pull_request:
5
push:
6
tags:
7
- - 'v*'
+ - '*'
8
workflow_dispatch:
9
10
jobs:
@@ -19,6 +19,17 @@ jobs:
19
with:
20
sccache: s3
21
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
33
- name: Install build tools
34
run: |
35
apt-get update
@@ -68,6 +79,7 @@ jobs:
68
79
echo "$OUTPUT" | grep 'Usage:'
69
80
70
81
- name: Upload artifact
82
+ if: startsWith(github.ref, 'refs/tags/')
71
83
uses: actions/upload-artifact@v4
72
84
73
85
name: cudf-test-harness-linux-x86_64
0 commit comments