Skip to content

Commit a0eb77b

Browse files
authored
Add release for armv7 (#1179)
1 parent 581a033 commit a0eb77b

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
- target: x86_64-pc-windows-gnu
2424
binary: languageclient.exe
2525
asset_name: languageclient-${{ github.event.release.tag_name }}-x86_64-pc-windows-gnu.exe
26+
- target: armv7-unknown-linux-musleabihf
27+
binary: languageclient
28+
asset_name: languageclient-${{ github.event.release.tag_name }}-armv7-unknown-linux-musleabihf
2629
steps:
2730
- name: Checkout code
2831
uses: actions/checkout@v2

install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,6 @@ case "${arch}" in
5858
"Linux aarch64") download $name-$version-aarch64-unknown-linux-musl ;;
5959
"Darwin x86_64") download $name-$version-x86_64-apple-darwin ;;
6060
"FreeBSD amd64") download $name-$version-x86_64-unknown-freebsd ;;
61+
"Linux armv7"*) download $name-$version-armv7-unknown-musleabihf ;;
6162
*) echo "No pre-built binary available for ${arch}."; try_build ;;
6263
esac

0 commit comments

Comments
 (0)