diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6bf171d668b920..0c1d9f7e8537d5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -112,14 +112,19 @@ jobs: path: /tmp/cores/ # Cores are big; don't hold on to them too long. retention-days: 5 - - name: Uploading objdir for debugging - uses: actions/upload-artifact@v2 - if: ${{ failure() && !env.ACT }} - with: - name: crash-objdir-linux-gcc-debug - path: out/ - # objdirs are big; don't hold on to them too long. - retention-days: 5 + # OBJDIR on linux is > 10K files and takes more than 50 minutes to upload, usually + # having the job timeout. + # + # If re-enabling, some subset of this should be picked + # + # - name: Uploading objdir for debugging + # uses: actions/upload-artifact@v2 + # if: ${{ failure() && !env.ACT }} + # with: + # name: crash-objdir-linux-gcc-debug + # path: out/ + # # objdirs are big; don't hold on to them too long. + # retention-days: 5 build_linux: name: Build on Linux (fake, gcc_release, clang, simulated) timeout-minutes: 150 @@ -240,7 +245,7 @@ jobs: # Cores are big; don't hold on to them too long. retention-days: 5 # OBJDIR on linux is > 10K files and takes more than 50 minutes to upload, usually - # having the job timeout. + # having the job timeout. # # If re-enabling, some subset of this should be picked #