@@ -112,14 +112,19 @@ jobs:
112
112
path : /tmp/cores/
113
113
# Cores are big; don't hold on to them too long.
114
114
retention-days : 5
115
- - name : Uploading objdir for debugging
116
- uses : actions/upload-artifact@v2
117
- if : ${{ failure() && !env.ACT }}
118
- with :
119
- name : crash-objdir-linux-gcc-debug
120
- path : out/
121
- # objdirs are big; don't hold on to them too long.
122
- retention-days : 5
115
+ # OBJDIR on linux is > 10K files and takes more than 50 minutes to upload, usually
116
+ # having the job timeout.
117
+ #
118
+ # If re-enabling, some subset of this should be picked
119
+ #
120
+ # - name: Uploading objdir for debugging
121
+ # uses: actions/upload-artifact@v2
122
+ # if: ${{ failure() && !env.ACT }}
123
+ # with:
124
+ # name: crash-objdir-linux-gcc-debug
125
+ # path: out/
126
+ # # objdirs are big; don't hold on to them too long.
127
+ # retention-days: 5
123
128
build_linux :
124
129
name : Build on Linux (fake, gcc_release, clang, simulated)
125
130
timeout-minutes : 150
@@ -240,7 +245,7 @@ jobs:
240
245
# Cores are big; don't hold on to them too long.
241
246
retention-days : 5
242
247
# OBJDIR on linux is > 10K files and takes more than 50 minutes to upload, usually
243
- # having the job timeout.
248
+ # having the job timeout.
244
249
#
245
250
# If re-enabling, some subset of this should be picked
246
251
#
0 commit comments