From 3e95b2822294bd23c793e236e67c75662e7f1408 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Sun, 21 Jun 2020 01:22:21 -0400 Subject: [PATCH] github actions don't allow bloaty output to fail compile job The bloaty output is for monitoring and review, but shouldn't be allowed to fail the overall compile job if something goes wrong. --- .github/workflows/compile_nuttx.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/compile_nuttx.yml b/.github/workflows/compile_nuttx.yml index 6240464b96..35d06c340b 100644 --- a/.github/workflows/compile_nuttx.yml +++ b/.github/workflows/compile_nuttx.yml @@ -88,17 +88,17 @@ jobs: - name: make ${{matrix.config}} run: make ${{matrix.config}} - name: make ${{matrix.config}} bloaty_compileunits - run: make ${{matrix.config}} bloaty_compileunits + run: make ${{matrix.config}} bloaty_compileunits || true - name: make ${{matrix.config}} bloaty_inlines - run: make ${{matrix.config}} bloaty_inlines + run: make ${{matrix.config}} bloaty_inlines || true - name: make ${{matrix.config}} bloaty_segments - run: make ${{matrix.config}} bloaty_segments + run: make ${{matrix.config}} bloaty_segments || true - name: make ${{matrix.config}} bloaty_symbols - run: make ${{matrix.config}} bloaty_symbols + run: make ${{matrix.config}} bloaty_symbols || true - name: make ${{matrix.config}} bloaty_templates - run: make ${{matrix.config}} bloaty_templates + run: make ${{matrix.config}} bloaty_templates || true - name: make ${{matrix.config}} bloaty_compare_master - run: make ${{matrix.config}} bloaty_compare_master + run: make ${{matrix.config}} bloaty_compare_master || true - name: ccache post-run run: ccache -s