File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,19 @@ jobs:
2525 matrix :
2626 include :
2727 - { os: ubuntu-20.04, target: linux, platform: linux-x64 }
28- # - { os: ubuntu-20.04, target: linux, platform: linux-arm64 }
28+ - { os: ubuntu-20.04, target: linux, platform: linux-arm64 }
2929 - { os: macos-11, target: darwin, platform: darwin-x64 }
3030 - { os: macos-11, target: darwin, platform: darwin-arm64 }
3131 # - { os: windows-latest, target: windows, platform: win32-ia32 } # 不再支持32位
3232 - { os: windows-latest, target: windows, platform: win32-x64 }
3333 runs-on : ${{ matrix.os }}
3434 steps :
35+ - name : Install aarch64-linux-gnu
36+ if : ${{ matrix.platform == 'linux-arm64' }}
37+ run : |
38+ sudo apt-get update
39+ sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
40+
3541 - uses : actions/checkout@v4
3642 with :
3743 submodules : recursive
You can’t perform that action at this time.
0 commit comments