Skip to content

Commit 85bb848

Browse files
authored
Merge branch 'main' into bh1730_sensor
2 parents ec92906 + d410b2c commit 85bb848

File tree

2,960 files changed

+86360
-13219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,960 files changed

+86360
-13219
lines changed

.github/ISSUE_TEMPLATE/001_bug_report.md

Lines changed: 0 additions & 71 deletions
This file was deleted.
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
labels: ["bug"]
4+
type: "Bug"
5+
assignees: []
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
- type: textarea
12+
id: what-happened
13+
attributes:
14+
label: Describe the bug
15+
description: |
16+
A clear and concise description of what the bug is.
17+
18+
placeholder: |
19+
Please also mention any information which could help others to understand
20+
the problem you're facing:
21+
- What target platform are you using?
22+
- What have you tried to diagnose or workaround this issue?
23+
- Is this a regression? If yes, have you been able to "git bisect" it to a
24+
specific commit?
25+
validations:
26+
required: true
27+
- type: checkboxes
28+
id: regression
29+
attributes:
30+
label: Regression
31+
description: |
32+
Check this box if this is a regression and provide a SHA if you were able to "git bisect" to a specific commit.
33+
options:
34+
- label: This is a regression.
35+
required: false
36+
- type: textarea
37+
id: reproduce
38+
attributes:
39+
label: Steps to reproduce
40+
description: |
41+
Steps to reproduce the behavior.
42+
43+
placeholder: |
44+
Steps to reproduce the behavior:
45+
1. mkdir build; cd build
46+
2. cmake -DBOARD=board\_xyz
47+
3. make
48+
4. See error
49+
validations:
50+
required: false
51+
- type: textarea
52+
id: logs
53+
attributes:
54+
label: Relevant log output
55+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
56+
render: shell
57+
- type: dropdown
58+
attributes:
59+
label: Impact
60+
description: Impact of this bug
61+
multiple: false
62+
options:
63+
- Showstopper – Prevents release or major functionality; system unusable.
64+
- Major – Severely degrades functionality; workaround is difficult or unavailable.
65+
- Functional Limitation – Some features not working as expected, but system usable.
66+
- Annoyance – Minor irritation; no significant impact on usability or functionality.
67+
- Intermittent – Occurs occasionally; hard to reproduce.
68+
- Not sure
69+
default: 3
70+
validations:
71+
required: true
72+
- type: textarea
73+
id: env
74+
attributes:
75+
label: Environment
76+
description: please complete the following information
77+
placeholder: |
78+
- OS: (e.g. Linux, MacOS, Windows)
79+
- Toolchain (e.g Zephyr SDK, ...)
80+
- Commit SHA or Version used
81+
- type: textarea
82+
id: context
83+
attributes:
84+
label: Additional Context
85+
description: Provide other context that could be relevant to the bug, such as pin setting, target configuration,etc.

.github/ISSUE_TEMPLATE/008_bin-blobs.md

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Zephyr Community Support
4+
url: https://github.com/zephyrproject-rtos/zephyr/discussions
5+
about: Please ask and answer questions here.

.github/workflows/bsim-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
runs-on:
4343
group: zephyr-runner-v2-linux-x64-4xlarge
4444
container:
45-
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.27.4.20241026
45+
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.28.0.20250523
4646
options: '--entrypoint /bin/bash'
4747
env:
4848
ZEPHYR_TOOLCHAIN_VARIANT: zephyr

.github/workflows/clang.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on:
1919
group: zephyr-runner-v2-linux-x64-4xlarge
2020
container:
21-
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.27.4.20241026
21+
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.28.0.20250523
2222
options: '--entrypoint /bin/bash'
2323
strategy:
2424
fail-fast: false
@@ -29,7 +29,7 @@ jobs:
2929
CCACHE_REMOTE_STORAGE: "redis://cache-*.keydb-cache.svc.cluster.local|shards=1,2,3"
3030
CCACHE_REMOTE_ONLY: "true"
3131
CCACHE_IGNOREOPTIONS: '-specs=* --specs=*'
32-
LLVM_TOOLCHAIN_PATH: /usr/lib/llvm-16
32+
LLVM_TOOLCHAIN_PATH: /usr/lib/llvm-20
3333
BASE_REF: ${{ github.base_ref }}
3434
steps:
3535
- name: Apply container owner mismatch workaround

.github/workflows/codecov.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on:
1818
group: zephyr-runner-v2-linux-x64-4xlarge
1919
container:
20-
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.27.4.20241026
20+
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.28.0.20250523
2121
options: '--entrypoint /bin/bash'
2222
strategy:
2323
fail-fast: false

.github/workflows/errno.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
check-errno:
1414
runs-on: ubuntu-24.04
1515
container:
16-
image: ghcr.io/zephyrproject-rtos/ci:v0.27.4
16+
image: ghcr.io/zephyrproject-rtos/ci:v0.28.0
1717

1818
steps:
1919
- name: Apply container owner mismatch workaround

.github/workflows/footprint-tracking.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
group: zephyr-runner-v2-linux-x64-4xlarge
3030
if: github.repository_owner == 'zephyrproject-rtos'
3131
container:
32-
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.27.4.20241026
32+
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.28.0.20250523
3333
options: '--entrypoint /bin/bash'
3434
defaults:
3535
run:

.github/workflows/manifest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
west init -l . || true
4343
4444
- name: Manifest
45-
uses: zephyrproject-rtos/action-manifest@cb8f6fba6f20b5f8649bd573e80a7583a239894c # v1.7.0
45+
uses: zephyrproject-rtos/action-manifest@1729cded3fc798cf0de4a789c596dcb9c40eb14c # v1.9.1
4646
with:
4747
github-token: ${{ secrets.GITHUB_TOKEN }}
4848
manifest-path: 'west.yml'
@@ -53,3 +53,5 @@ jobs:
5353
verbosity-level: '1'
5454
labels: 'manifest'
5555
dnm-labels: 'DNM (manifest)'
56+
blobs-added-labels: 'Binary Blobs Added'
57+
blobs-modified-labels: 'Binary Blobs Modified'

0 commit comments

Comments
 (0)