瀏覽代碼

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

Huang Qi 3 年之前
父節點
當前提交
d7c2e9a6ea
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      .github/workflows/compilation_on_nuttx.yml

+ 4 - 1
.github/workflows/compilation_on_nuttx.yml

@@ -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') }}