File tree 4 files changed +17
-1
lines changed
4 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 64
64
uses : ./.github/actions/checkout-submodules-and-bootstrap
65
65
with :
66
66
platform : esp32
67
+ - name : Fixup GdbGui requirement
68
+ run : perl -i -pe 's/^gdbgui==/# gdbgui==/' /opt/espressif/esp-idf/requirements.txt
67
69
- name : CI Examples ESP32
68
70
shell : bash
69
71
run : |
Original file line number Diff line number Diff line change 46
46
with :
47
47
platform : esp32
48
48
49
+ - name : Fixup GdbGui requirement
50
+ run : perl -i -pe 's/^gdbgui==/# gdbgui==/' /opt/espressif/esp-idf/requirements.txt
51
+
49
52
- name : Set up environment for size reports
50
53
uses : ./.github/actions/setup-size-reports
51
54
if : ${{ !env.ACT }}
@@ -139,6 +142,9 @@ jobs:
139
142
with :
140
143
platform : esp32
141
144
145
+ - name : Fixup GdbGui requirement
146
+ run : perl -i -pe 's/^gdbgui==/# gdbgui==/' /opt/espressif/esp-idf/requirements.txt
147
+
142
148
- name : Build example Bridge App
143
149
run : scripts/examples/esp_example.sh bridge-app
144
150
Original file line number Diff line number Diff line change 50
50
with :
51
51
platform : esp32
52
52
53
+ - name : Fixup GdbGui requirement
54
+ run : perl -i -pe 's/^gdbgui==/# gdbgui==/' /opt/espressif/esp-idf/requirements.txt
55
+
53
56
- name : Build ESP32 QEMU test images
54
57
run : |
55
58
scripts/run_in_build_env.sh " \
Original file line number Diff line number Diff line change @@ -10,4 +10,9 @@ kconfiglib==13.7.1
10
10
construct==2.10.54
11
11
python-socketio<5
12
12
itsdangerous<2.1 ; python_version < "3.11"
13
- gdbgui==0.13.2.0 ; python_version < "3.11" and platform_machine != 'aarch64' and sys_platform == 'linux'
13
+ #
14
+ # gdbgui pulls in gevent which fails to compile due to cython updates.
15
+ # Could not find a good way to fix this dependency, so commenting it
16
+ # out here.
17
+ #
18
+ # gdbgui==0.13.2.0 ; python_version < "3.11" and platform_machine != 'aarch64' and sys_platform == 'linux'
You can’t perform that action at this time.
0 commit comments