We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aae4683 commit eadecbaCopy full SHA for eadecba
.github/workflows/compliance.yml
@@ -5,6 +5,7 @@ on:
5
6
jobs:
7
check_compliance:
8
+ if: github.event_name == 'pull_request'
9
runs-on: ubuntu-22.04
10
name: Run compliance checks on patch series (PR)
11
steps:
.github/workflows/twister.yaml
@@ -25,13 +25,14 @@ jobs:
25
26
twister-build-prep:
27
needs: compliance-check
28
+ if: always()
29
uses: ./.github/workflows/twister-prep.yaml
30
31
twister-build:
32
runs-on:
33
group: zephyr-runner-v2-linux-x64-4xlarge
34
needs: twister-build-prep
- if: needs.twister-build-prep.outputs.size != 0
35
+ if: needs.twister-build-prep.outputs.size != 0 || always()
36
container:
37
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.27.4.20241026
38
options: '--entrypoint /bin/bash'
0 commit comments