Fix NuttX CI break by install missing dependencies (#1532)

This commit is contained in:
Huang Qi 2022-09-29 12:31:56 +08:00 committed by GitHub
parent c505da7464
commit d7c2e9a6ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,10 @@ jobs:
steps:
- name: Install Utilities
run: sudo apt install -y kconfig-frontends-nox genromfs
run: |
sudo apt install -y kconfig-frontends-nox genromfs
pip3 install pyelftools
pip3 install cxxfilt
- name: Install ARM Compilers
if: ${{ contains(matrix.nuttx_board_config, 'arm') }}