From 6ad6191e6a909445ea2ec2f5e192d6ca4e88ffd9 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Wed, 2 Aug 2023 17:18:43 -0700 Subject: [PATCH] car docs diff bot: don't ignore failures we have a test for this, so if that fails, doesn't matter if this fails too --- .github/workflows/selfdrive_tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/selfdrive_tests.yaml b/.github/workflows/selfdrive_tests.yaml index 17f0907fe4..61d5d61a9e 100644 --- a/.github/workflows/selfdrive_tests.yaml +++ b/.github/workflows/selfdrive_tests.yaml @@ -410,7 +410,7 @@ jobs: id: save_diff run: | ${{ env.RUN }} "scons -j$(nproc)" - output=$(${{ env.RUN }} "python selfdrive/debug/print_docs_diff.py --path /tmp/openpilot_cache/base_car_info") || true + output=$(${{ env.RUN }} "python selfdrive/debug/print_docs_diff.py --path /tmp/openpilot_cache/base_car_info") output="${output//$'\n'/'%0A'}" echo "::set-output name=diff::$output" - name: Find comment