Skip to content

Commit fe657b9

Browse files
committed
fix(modem): Ignore more build warnings
1 parent 453be4c commit fe657b9

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/modem__build-host-tests.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ jobs:
1515
matrix:
1616
idf_ver: ["latest", "release-v5.0", "release-v5.1", "release-v5.2", "release-v5.3", "release-v5.4"]
1717
example: ["pppos_client", "modem_console", "modem_tcp_client", "ap_to_pppos", "simple_cmux_client"]
18-
include:
19-
- idf_ver: "release-v5.0"
20-
example: "simple_cmux_client"
21-
warning: "Warning: The smallest app partition is nearly full"
22-
2318
runs-on: ubuntu-22.04
2419
container: espressif/idf:${{ matrix.idf_ver }}
2520
steps:
@@ -30,9 +25,9 @@ jobs:
3025
- if: ${{ matrix.skip_config }}
3126
run: rm -f $GITHUB_WORKSPACE/protocols/components/esp_modem/examples/${{ matrix.example }}/sdkconfig.ci.${{ matrix.skip_config }}*
3227
- name: Build ${{ matrix.example }} with IDF-${{ matrix.idf_ver }}
33-
env:
34-
EXPECTED_WARNING: ${{ matrix.warning }}
3528
shell: bash
29+
env:
30+
EXPECTED_WARNING: "Warning: The smallest app partition is nearly full\nwarning: unknown kconfig symbol 'ESP32_PANIC_PRINT_HALT'"
3631
run: |
3732
. ${IDF_PATH}/export.sh
3833
python -m pip install idf-build-apps

ci/build_apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
build_dir='build_@t_@w',
5757
config_rules_str=args.rules,
5858
build_log_filename='build_log.txt',
59-
size_json_filename='size.json' if not args.linux else None,
59+
size_json_filename=None,
6060
check_warnings=True,
6161
manifest_files=args.manifests,
6262
default_build_targets=SUPPORTED_TARGETS,

0 commit comments

Comments
 (0)