sort index #119
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Rust | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "*" | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - { os: ubuntu-20.04, target: x86_64-unknown-linux-gnu, platform: linux-x64, cross: general } | |
| - { os: ubuntu-22.04, target: x86_64-unknown-linux-gnu, platform: linux-x64, cross: zigbuild, glibc: 2.17 } | |
| - { os: ubuntu-22.04, target: aarch64-unknown-linux-gnu, platform: linux-arm64, cross: zigbuild, glibc: 2.17 } | |
| - { os: ubuntu-22.04, target: riscv64gc-unknown-linux-gnu, platform: linux-riscv64,cross: cross } | |
| - { os: ubuntu-20.04, target: x86_64-unknown-linux-musl, platform: linux-musl, cross: cross } | |
| - { os: macos-latest, target: x86_64-apple-darwin, platform: darwin-x64, cross: general } | |
| - { os: macos-latest, target: aarch64-apple-darwin, platform: darwin-arm64, cross: general } | |
| - { os: windows-latest, target: x86_64-pc-windows-msvc, platform: win32-x64, cross: general } | |
| - { os: windows-latest, target: i686-pc-windows-msvc, platform: win32-ia32, cross: general } | |
| - { os: windows-latest, target: aarch64-pc-windows-msvc, platform: win32-arm64, cross: general } | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Build - General | |
| if: ${{ matrix.cross == 'general' }} | |
| run: | | |
| rustup target add ${{ matrix.target }} | |
| cargo build --release --target ${{ matrix.target }} -p emmylua_ls | |
| - name: Build - cross | |
| if: ${{ matrix.cross == 'cross' }} | |
| run: | | |
| cargo install cross | |
| cross build --release --target ${{ matrix.target }} -p emmylua_ls | |
| - name: Build -zigbuild | |
| if: ${{ matrix.cross == 'zigbuild' }} | |
| run: | | |
| rustup target add ${{ matrix.target }} | |
| cargo install --locked cargo-zigbuild | |
| pip3 install ziglang | |
| cargo zigbuild --release --target ${{ matrix.target }}.${{ matrix.glibc }} -p emmylua_ls | |
| - name: package-uninx | |
| if: ${{ matrix.os != 'windows-latest' }} | |
| run: | | |
| python publish/workflow_copy_files.py . ${{ github.workspace }}/artifact | |
| mkdir -p ${{ github.workspace }}/artifact/ | |
| cp ${{ github.workspace }}/target/${{ matrix.target }}/release/emmylua_ls ${{ github.workspace }}/artifact/ | |
| - name: package-windows | |
| if: ${{ matrix.os == 'windows-latest' }} | |
| run: | | |
| python publish/workflow_copy_files.py . "${{ github.workspace }}/artifact" | |
| Copy-Item -Path ${{ github.workspace }}\target\${{ matrix.target }}\release\emmylua_ls.exe -Destination ${{ github.workspace }}\artifact\ | |
| shell: pwsh | |
| - name: Upload | |
| if: ${{ matrix.cross != 'zigbuild' }} | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: emmylua_ls-${{ matrix.platform }} | |
| path: ${{ github.workspace }}/artifact/ | |
| - name: Upload zigbuild | |
| if: ${{ matrix.cross == 'zigbuild' }} | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: emmylua_ls-${{ matrix.platform }}-glibc.${{ matrix.glibc }} | |
| path: ${{ github.workspace }}/artifact/ | |
| release: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.ref, 'refs/tags/') | |
| steps: | |
| - name: Download | |
| uses: actions/download-artifact@v3 | |
| - name: zip windows package win32-x64 | |
| uses: TheDoctor0/[email protected] | |
| with: | |
| filename: emmylua_ls-win32-x64.zip | |
| path: emmylua_ls-win32-x64 | |
| - name: zip windows package win32-ia32 | |
| uses: TheDoctor0/[email protected] | |
| with: | |
| filename: emmylua_ls-win32-ia32.zip | |
| path: emmylua_ls-win32-ia32 | |
| - name: zip windows package win32-arm64 | |
| uses: TheDoctor0/[email protected] | |
| with: | |
| filename: emmylua_ls-win32-arm64.zip | |
| path: emmylua_ls-win32-arm64 | |
| - name: tar unix | |
| run: | | |
| chmod +x emmylua_ls-linux-x64/emmylua_ls | |
| tar -czf emmylua_ls-linux-x64.tar.gz -C emmylua_ls-linux-x64 . | |
| chmod +x emmylua_ls-linux-x64-glibc.2.17/emmylua_ls | |
| tar -czf emmylua_ls-linux-x64-glibc.2.17.tar.gz -C emmylua_ls-linux-x64-glibc.2.17 . | |
| chmod +x emmylua_ls-linux-arm64-glibc.2.17/emmylua_ls | |
| tar -czf emmylua_ls-linux-aarch64-glibc.2.17.tar.gz -C emmylua_ls-linux-arm64-glibc.2.17 . | |
| chmod +x emmylua_ls-linux-musl/emmylua_ls | |
| tar -czf emmylua_ls-linux-musl.tar.gz -C emmylua_ls-linux-musl . | |
| chmod +x emmylua_ls-linux-riscv64/emmylua_ls | |
| tar -czf emmylua_ls-linux-riscv64.tar.gz -C emmylua_ls-linux-riscv64 . | |
| chmod +x emmylua_ls-darwin-x64/emmylua_ls | |
| tar -czf emmylua_ls-darwin-x64.tar.gz -C emmylua_ls-darwin-x64 . | |
| chmod +x emmylua_ls-darwin-arm64/emmylua_ls | |
| tar -czf emmylua_ls-darwin-arm64.tar.gz -C emmylua_ls-darwin-arm64 . | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: emmylua_ls | |
| draft: false | |
| generate_release_notes: true | |
| files: | | |
| emmylua_ls-win32-x64.zip | |
| emmylua_ls-win32-ia32.zip | |
| emmylua_ls-win32-arm64.zip | |
| emmylua_ls-linux-x64.tar.gz | |
| emmylua_ls-linux-x64-glibc.2.17.tar.gz | |
| emmylua_ls-linux-aarch64-glibc.2.17.tar.gz | |
| emmylua_ls-linux-musl.tar.gz | |
| emmylua_ls-linux-riscv64.tar.gz | |
| emmylua_ls-darwin-x64.tar.gz | |
| emmylua_ls-darwin-arm64.tar.gz | |
| token: ${{ secrets.RELEASE }} |