Skip to content

Commit d7c2e9a

Browse files
authored
Fix NuttX CI break by install missing dependencies (#1532)
1 parent c505da7 commit d7c2e9a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/compilation_on_nuttx.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ jobs:
7272

7373
steps:
7474
- name: Install Utilities
75-
run: sudo apt install -y kconfig-frontends-nox genromfs
75+
run: |
76+
sudo apt install -y kconfig-frontends-nox genromfs
77+
pip3 install pyelftools
78+
pip3 install cxxfilt
7679
7780
- name: Install ARM Compilers
7881
if: ${{ contains(matrix.nuttx_board_config, 'arm') }}

0 commit comments

Comments
 (0)