-
Notifications
You must be signed in to change notification settings - Fork 655
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maintenance changes in the component, examples and readme #597
Changes from all commits
46562a5
c3705a4
015fc47
efdc6da
b09db0e
81dee7a
750417e
2ddedb9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,8 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
idf_ver: ["release-v4.1", "release-v4.2", "release-v4.3"] | ||
idf_ver: ["release-v4.3"] | ||
idf_target: ["esp32", "esp32s2"] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we could also add S3 to the list of targets There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Already there around line 35. |
||
exclude: | ||
- idf_ver: "release-v4.1" | ||
idf_target: esp32s2 # ESP32S2 support started with version 4.2 | ||
container: espressif/idf:${{ matrix.idf_ver }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
@@ -25,7 +22,7 @@ jobs: | |
env: | ||
IDF_TARGET: ${{ matrix.idf_target }} | ||
shell: bash | ||
working-directory: examples | ||
working-directory: examples/camera_example | ||
run: | | ||
. ${IDF_PATH}/export.sh | ||
idf.py build | ||
|
@@ -48,7 +45,7 @@ jobs: | |
env: | ||
IDF_TARGET: ${{ matrix.idf_target }} | ||
shell: bash | ||
working-directory: examples | ||
working-directory: examples/camera_example | ||
run: | | ||
. ${IDF_PATH}/export.sh | ||
export PEDANTIC_FLAGS="-DIDF_CI_BUILD -Werror -Werror=deprecated-declarations -Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function" | ||
|
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
idf_component_register(SRCS take_picture.c | ||
PRIV_INCLUDE_DIRS . | ||
PRIV_REQUIRES nvs_flash) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
dependencies: | ||
espressif/esp32-camera: | ||
version: "*" | ||
override_path: "../../../" | ||
|
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
description: ESP32 compatible driver for OV2640, OV3660, OV5640, OV7670 and OV7725 image sensors. | ||
url: https://github.com/espressif/esp32-camera | ||
issues: https://github.com/espressif/esp32-camera/issues | ||
documentation: https://github.com/espressif/esp32-camera/tree/main/README.md | ||
repository: https://github.com/espressif/esp32-camera.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
makes sense to add some newer versions? 4.4, 5.0 and 5.1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They are already there in
build-examples-pedantic
job below, around line 29.As I understand, when we have enabled more strict warnings checks in CI, we only did so for v4.4 and later, and split the jobs into
I guess the two jobs could be folded into one. But it's probably not so important since release/v4.3 will be EOL in a month (December 15) and we can remove this job completely.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah... that explains my confusion.