1717 matrix :
1818 include :
1919 - { os: ubuntu-20.04, target: x86_64-unknown-linux-gnu, platform: linux-x64, cross: general }
20- - { os: ubuntu-22.04, target: aarch64-unknown-linux-gnu, platform: linux-arm64, cross: aarch }
20+ # - { os: ubuntu-22.04, target: aarch64-unknown-linux-gnu, platform: linux-arm64, cross: aarch64 }
2121 - { os: ubuntu-20.04, target: x86_64-unknown-linux-musl, platform: linux-musl, cross: cross }
22- - { os: ubuntu-22.04, target: x86_64-unknown-freebsd, platform: linux-bsd, cross: bsd }
22+ # - { os: ubuntu-22.04, target: x86_64-unknown-freebsd, platform: linux-bsd, cross: bsd }
2323 - { os: macos-latest, target: x86_64-apple-darwin, platform: darwin-x64, cross: general }
2424 - { os: macos-latest, target: aarch64-apple-darwin, platform: darwin-arm64, cross: general }
2525 - { os: windows-latest, target: x86_64-pc-windows-msvc, platform: win32-x64, cross: general }
@@ -44,12 +44,12 @@ jobs:
4444 - name : package-unix
4545 if : ${{ matrix.os != 'windows-latest' }}
4646 run : |
47- cp target/${{ matrix.platform }}/release/lua-language-server ${{ github.workspace }}/artifact/
47+ cp target/${{ matrix.target }}/release/lua-language-server ${{ github.workspace }}/artifact/
4848 cp resources ${{ github.workspace }}/artifact/ -r
4949 - name : package-windows
50- if : ${{ matrix.os == 'windows-latest' }}
50+ if : ${{ matrix.os == 'windows-latest' }}
5151 run : |
52- powershell -Command "Copy-Item -Path target\${{ matrix.platform }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\"
52+ powershell -Command "Copy-Item -Path target\${{ matrix.target }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\"
5353 powershell -Command "Copy-Item -Path resources -Destination ${{ github.workspace }}\artifact\ -Recurse"
5454 - name : Upload
5555 uses : actions/upload-artifact@v3
0 commit comments