summaryrefslogtreecommitdiff
path: root/.github/workflows/ci_builds.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci_builds.yml')
-rw-r--r--.github/workflows/ci_builds.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci_builds.yml b/.github/workflows/ci_builds.yml
index 1f1813faab..ef792dcbaf 100644
--- a/.github/workflows/ci_builds.yml
+++ b/.github/workflows/ci_builds.yml
@@ -39,7 +39,11 @@ jobs:
- name: Run `qmk mass-compile` (keymap ${{ matrix.keymap }})
run: |
export NCPUS=$(nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || getconf _NPROCESSORS_ONLN 2>/dev/null)
- qmk mass-compile -t -j $NCPUS -km ${{ matrix.keymap }}
+ qmk mass-compile -t -j $NCPUS -km ${{ matrix.keymap }} -e DUMP_CI_METADATA=yes
+ # Generate the step summary markdown
+ ./util/ci/generate_failure_markdown.sh > $GITHUB_STEP_SUMMARY
+ # Truncate to a maximum of 1MB to deal with GitHub workflow limit
+ truncate --size='<960K' $GITHUB_STEP_SUMMARY
- name: 'Upload artifacts'
uses: actions/upload-artifact@v3