Browse Source

CI: Ignore lang-check errors in lang stage

Yuri D'Elia 1 year ago
parent
commit
9bfe480320
1 changed files with 3 additions and 1 deletions
  1. 3 1
      .github/travis/cmake-lang.sh

+ 3 - 1
.github/travis/cmake-lang.sh

@@ -7,4 +7,6 @@ cmake .. \
     -DCMAKE_TOOLCHAIN_FILE="../cmake/AvrGcc.cmake" \
     -DCMAKE_BUILD_TYPE=Release \
     -G Ninja
-ninja check_lang
+
+# ignore all failures in order to show as much output as possible
+ninja -k0 check_lang || true