From eee44bbb26df2b2412feb9048eb0f61a856d621b Mon Sep 17 00:00:00 2001 From: Derek Bailey Date: Wed, 6 Apr 2022 15:03:43 -0700 Subject: [PATCH] disable cpp-linter (#7229) --- .github/workflows/cpp-linter.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cpp-linter.yml b/.github/workflows/cpp-linter.yml index 88fbd6b7c..035657ebf 100644 --- a/.github/workflows/cpp-linter.yml +++ b/.github/workflows/cpp-linter.yml @@ -12,6 +12,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: cmake + run: CXX=clang++-12 cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . - uses: shenxianpeng/cpp-linter-action@master id: linter env: @@ -32,4 +34,5 @@ jobs: - name: Check Result if: steps.linter.outputs.checks-failed > 0 - run: exit 1 + run: | + echo "Failed linting."