Skip to content

Commit

Permalink
github: workflows: disable clang workflow to unblock CI
Browse files Browse the repository at this point in the history
For quite some time, clang-build (native_posix) jobs have failed
in CI on v2.7-branch.

Disable the workflow temporarily so that CI can pass again.

Signed-off-by: Chris Friedt <[email protected]>
  • Loading branch information
Chris Friedt committed Nov 21, 2024
1 parent 6477a75 commit dfb11f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/clang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ concurrency:

jobs:
clang-build:
if: false
runs-on: zephyr-runner-linux-x64-4xlarge
container:
image: zephyrprojectrtos/ci:v0.18.4
Expand Down Expand Up @@ -121,7 +122,8 @@ jobs:
name: "Publish Unit Tests Results"
needs: clang-build
runs-on: ubuntu-20.04
if: (success() || failure() ) && needs.clang-build.outputs.report_needed != 0
if: false
#if: (success() || failure() ) && needs.clang-build.outputs.report_needed != 0
steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
Expand Down

0 comments on commit dfb11f9

Please sign in to comment.