File tree 5 files changed +201
-46
lines changed
5 files changed +201
-46
lines changed Original file line number Diff line number Diff line change 67
67
run : |
68
68
./scripts/run_in_build_env.sh \
69
69
"python3 ./scripts/tests/run_tv_casting_test.py"
70
- timeout-minutes : 1
70
+ timeout-minutes : 2 # Comment this out to debug if GitHub Action times out.
71
71
72
72
- name : Uploading Size Reports
73
73
uses : ./.github/actions/upload-size-reports
Original file line number Diff line number Diff line change @@ -696,11 +696,20 @@ def main() -> int:
696
696
if options .build_target == "esp32" :
697
697
shell .run_cmd (f"cd { _CHEF_SCRIPT_PATH } /esp32" )
698
698
if options .enable_ipv4 :
699
- shell .run_cmd (
700
- "sed -i 's/CONFIG_DISABLE_IPV4=y/#\\ CONFIG_DISABLE_IPV4\\ is\\ not\\ set/g' sdkconfig " )
699
+ if sys .platform == "darwin" :
700
+ shell .run_cmd (
701
+ "sed -i '' 's/CONFIG_DISABLE_IPV4=y/#\\ CONFIG_DISABLE_IPV4\\ is\\ not\\ set/g' sdkconfig " )
702
+ else :
703
+ shell .run_cmd (
704
+ "sed -i 's/CONFIG_DISABLE_IPV4=y/#\\ CONFIG_DISABLE_IPV4\\ is\\ not\\ set/g' sdkconfig " )
701
705
else :
702
- shell .run_cmd (
703
- "sed -i 's/#\\ CONFIG_DISABLE_IPV4\\ is\\ not\\ set/CONFIG_DISABLE_IPV4=y/g' sdkconfig " )
706
+ if sys .platform == "darwin" :
707
+ shell .run_cmd (
708
+ "sed -i '' 's/#\\ CONFIG_DISABLE_IPV4\\ is\\ not\\ set/CONFIG_DISABLE_IPV4=y/g' sdkconfig " )
709
+ else :
710
+ shell .run_cmd (
711
+ "sed -i 's/#\\ CONFIG_DISABLE_IPV4\\ is\\ not\\ set/CONFIG_DISABLE_IPV4=y/g' sdkconfig " )
712
+
704
713
shell .run_cmd ("idf.py build" )
705
714
shell .run_cmd ("idf.py build flashing_script" )
706
715
shell .run_cmd (
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ CONFIG_MBEDTLS_HKDF_C=y
62
62
63
63
# IRAM optimizations
64
64
CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH=y
65
+ CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH=y
65
66
66
67
# Increase LwIP IPv6 address number
67
68
CONFIG_LWIP_IPV6_NUM_ADDRESSES=6
Original file line number Diff line number Diff line change @@ -61,5 +61,6 @@ CONFIG_MBEDTLS_HKDF_C=y
61
61
62
62
# IRAM optimizations
63
63
CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH=y
64
+ CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH=y
64
65
65
66
CONFIG_DIAG_USE_EXTERNAL_LOG_WRAP=y
You can’t perform that action at this time.
0 commit comments