@@ -85,14 +85,14 @@ jobs:
85
85
- name : Upload workspace
86
86
uses : actions/upload-artifact@v3
87
87
with :
88
- name : workspace
88
+ name : workspace-${{ matrix.ghc }}-${{ matrix.os }}
89
89
retention-days : 1
90
90
path : workspace.tar.gz
91
91
92
92
- name : Upload .cabal
93
93
uses : actions/upload-artifact@v3
94
94
with :
95
- name : cabal-home
95
+ name : cabal-home-${{ matrix.ghc }}-${{ matrix.os }}
96
96
retention-days : 1
97
97
path : ~/.cabal/cabal.tar.gz
98
98
@@ -118,13 +118,13 @@ jobs:
118
118
- name : Download cabal home
119
119
uses : actions/download-artifact@v3
120
120
with :
121
- name : cabal-home
121
+ name : cabal-home-${{ matrix.ghc }}-${{ matrix.os }}
122
122
path : .
123
123
124
124
- name : Download workspace
125
125
uses : actions/download-artifact@v3
126
126
with :
127
- name : workspace
127
+ name : workspace-${{ matrix.ghc }}-${{ matrix.os }}
128
128
path : .
129
129
130
130
- name : untar
@@ -146,7 +146,7 @@ jobs:
146
146
- name : Archive benchmarking artifacts
147
147
uses : actions/upload-artifact@v3
148
148
with :
149
- name : bench-results-${{ runner.os }}-${{ matrix.ghc }}
149
+ name : bench-results-${{ matrix.example }}-${{ runner.os }}-${{ matrix.ghc }}
150
150
path : benchmark-artifacts.tar.gz
151
151
152
152
- name : tar benchmarking logs
@@ -155,7 +155,7 @@ jobs:
155
155
- name : Archive benchmark logs
156
156
uses : actions/upload-artifact@v3
157
157
with :
158
- name : bench-logs-${{ runner.os }}-${{ matrix.ghc }}
158
+ name : bench-logs-${{ matrix.example }}-${{ runner.os }}-${{ matrix.ghc }}
159
159
path : benchmark-logs.tar.gz
160
160
161
161
bench_post_job :
0 commit comments