Skip to content

Commit 0cd70c3

Browse files
authored
Set retention-days to 10 for benchmark artificats in GHA
A lifetime of only a single day is prohibitive. If the benchmark jobs are run 24 hours after the build+test jobs, then the benchmark jobs will fail because the artifact will have been deleted by then. A stop-gap solution is to rerun all jobs, but that's not very nice UX. In this commit, we change retention days to 10.
1 parent 3b1b756 commit 0cd70c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
with:
156156
name: benchmark-exes-${{ runner.os }}-${{ matrix.ghc }}
157157
path: mempool-bench
158-
retention-days: 1
158+
retention-days: 10
159159

160160
# NB: build the haddocks at the end to avoid unecessary recompilations.
161161
# We build the haddocks only for one GHC version.

0 commit comments

Comments
 (0)