Skip to content

Commit 7158409

Browse files
committed
add musl
1 parent dda124e commit 7158409

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
- name: x86_64-unknown-linux-musl # linux-amd64 static
1818
runner: ubuntu-latest
1919
target: x86_64-unknown-linux-musl
20+
- name: x86_64-unknown-linux-gnu # linux-amd64
21+
runner: ubuntu-latest
22+
target: x86_64-unknown-linux-gnu
2023
- name: x86_64-pc-windows-msvc # win-amd64
2124
runner: windows-latest
2225
target: x86_64-pc-windows-msvc
@@ -36,7 +39,7 @@ jobs:
3639
uses: dtolnay/rust-toolchain@stable
3740
with:
3841
targets: "${{ matrix.target }}"
39-
42+
4043
- name: Install musl-tools (only for musl builds)
4144
if: matrix.target == 'x86_64-unknown-linux-musl'
4245
run: sudo apt-get update && sudo apt-get install -y musl-tools

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "live-server-lsp"
3-
version = "0.3.10"
3+
version = "0.3.11"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)