Skip to content

Commit 7920d88

Browse files
authored
Remove upload of entire out dir for linux - it is too large (#22343)
1 parent c6cfbf0 commit 7920d88

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

.github/workflows/build.yaml

+14-9
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,19 @@ jobs:
112112
path: /tmp/cores/
113113
# Cores are big; don't hold on to them too long.
114114
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
123128
build_linux:
124129
name: Build on Linux (fake, gcc_release, clang, simulated)
125130
timeout-minutes: 150
@@ -240,7 +245,7 @@ jobs:
240245
# Cores are big; don't hold on to them too long.
241246
retention-days: 5
242247
# 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.
244249
#
245250
# If re-enabling, some subset of this should be picked
246251
#

0 commit comments

Comments
 (0)