Skip to content

Commit dc2e917

Browse files
Merge branch 'master' into fix/libsoduim_annex_k_decleartaion_issue
2 parents 57a1c65 + 2de4980 commit dc2e917

117 files changed

Lines changed: 5920 additions & 874 deletions

File tree

Some content is hidden

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

.build-test-rules.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,22 +79,23 @@ esp_lcd_qemu_rgb/examples/lcd_qemu_rgb_panel:
7979
- if: ((IDF_VERSION_MAJOR == 5 and IDF_VERSION_MINOR >= 3) or (IDF_VERSION_MAJOR > 5)) and (IDF_TARGET in ["esp32", "esp32c3"])
8080
reason: Example is meant to be run under QEMU, which currently only supports ESP32 and ESP32-C3
8181

82-
spi_nand_flash/examples/nand_flash:
83-
disable:
84-
- if: IDF_VERSION_MAJOR < 5
85-
reason: The spi_nand_flash component is compatible with IDF version v5.0 and above, due to a change in the f_mkfs API in versions above v5.0, which is not supported in older IDF versions.
86-
8782
spi_nand_flash/test_app:
8883
disable:
8984
- if: IDF_VERSION_MAJOR < 5
9085
reason: The spi_nand_flash component is compatible with IDF version v5.0 and above, due to a change in the f_mkfs API in versions above v5.0, which is not supported in older IDF versions.
86+
- if: IDF_VERSION_MAJOR < 6 and CONFIG_NAME == "bdl"
87+
reason: BDL support requires the esp_blockdev interface, available starting from IDF version v6.0.
9188

9289
spi_nand_flash/host_test:
9390
enable:
9491
- if: IDF_TARGET == "linux"
9592
disable:
9693
- if: IDF_VERSION_MAJOR < 5
9794
reason: The spi_nand_flash component is compatible with IDF version v5.0 and above, due to a change in the f_mkfs API in versions above v5.0, which is not supported in older IDF versions.
98-
disable:
9995
- if: IDF_VERSION_MAJOR == 5 and (IDF_VERSION_MINOR < 3)
10096
reason: Fails to build on older versions of IDF
97+
98+
spi_nand_flash_fatfs/examples/nand_flash:
99+
disable:
100+
- if: IDF_VERSION_MAJOR < 5
101+
reason: The spi_nand_flash component is compatible with IDF version v5.0 and above, due to a change in the f_mkfs API in versions above v5.0, which is not supported in older IDF versions.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ body:
6464
- quirc
6565
- sh2lib
6666
- spi_nand_flash
67+
- spi_nand_flash_fatfs
6768
- supertinycron
6869
- thorvg
6970
- touch_element

.github/workflows/build_and_run_apps.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,9 @@ jobs:
314314
- run-target-linux
315315
if: github.repository_owner == 'espressif' && always() && github.event_name == 'pull_request' && needs.prepare.outputs.build_only == '0'
316316
runs-on: ubuntu-22.04
317+
permissions:
318+
checks: write
319+
pull-requests: write
317320
steps:
318321
- name: Download Test results
319322
uses: actions/download-artifact@v4

.github/workflows/clang-tidy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
branches:
88
- master
99

10+
permissions:
11+
contents: read
12+
security-events: write
13+
1014
jobs:
1115
build:
1216
name: Run clang-tidy
@@ -61,7 +65,7 @@ jobs:
6165
results.sarif
6266
results.sarif.raw
6367
- name: Upload SARIF file
64-
uses: github/codeql-action/upload-sarif@v3
68+
uses: github/codeql-action/upload-sarif@v4
6569
with:
6670
sarif_file: results.sarif
6771
category: clang-tidy

.github/workflows/issue_comment.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Sync issue comments to JIRA
22

3+
permissions:
4+
issues: write
5+
pull-requests: write
6+
37
# This workflow will be triggered when new issue comment is created (including PR comments)
48
on: issue_comment
59

.github/workflows/new_issues.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Sync issues to Jira
22

3+
permissions:
4+
issues: write
5+
36
# This workflow will be triggered when a new issue is opened
47
on: issues
58

.github/workflows/new_prs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Sync remain PRs to Jira
22

3+
permissions:
4+
pull-requests: write
5+
36
# This workflow will be triggered every hour, to sync remaining PRs (i.e. PRs with zero comment) to Jira project
47
# Note that, PRs can also get synced when new PR comment is created
58
on:

.github/workflows/upload_component.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666
quirc
6767
sh2lib
6868
spi_nand_flash
69+
spi_nand_flash_fatfs
6970
supertinycron
7071
thorvg
7172
touch_element

.idf_build_apps.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,8 @@ check_warnings = true
4343

4444
# build related options
4545
build_dir = "build_@t_@w"
46-
config = ["sdkconfig.ci","sdkconfig.ci.*="]
46+
config_rules = [
47+
'sdkconfig.ci=default',
48+
'sdkconfig.ci.*=',
49+
]
4750
ignore_warning_file = ".ignore_build_warnings.txt"

0 commit comments

Comments
 (0)