Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ jobs:
- runner: macos-latest
os: darwin
arch: arm64
- runner: macos-latest
os: darwin
arch: amd64
# - runner: ubuntu-latest # Not supported by the CLI Scanner yet
# os: windows
# arch: amd64
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysdig-lsp"
version = "0.8.6"
version = "0.8.7"
edition = "2024"
authors = [ "Sysdig Inc." ]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ The easiest way to install Sysdig LSP is to download a pre-built binary from the
1. **Download the binary for your platform:**
- Linux x86_64: `sysdig-lsp-linux-amd64`
- Linux ARM64: `sysdig-lsp-linux-arm64`
- macOS x86_64 (Intel): `sysdig-lsp-darwin-amd64`
- macOS ARM64 (Apple Silicon): `sysdig-lsp-darwin-arm64`

> **Note:** macOS x86_64 (Intel) is no longer supported since Nixpkgs dropped the `x86_64-darwin` cross-compilation target. The last release with a `sysdig-lsp-darwin-amd64` binary is [0.8.5](https://github.com/sysdiglabs/sysdig-lsp/releases/tag/0.8.5).

2. **Make it executable and move to your PATH:**
```bash
# Example for Linux x86_64
Expand Down Expand Up @@ -105,7 +106,6 @@ The following binaries are built:

- Linux x86_64: `nix build .#sysdig-lsp-linux-amd64`
- Linux aarch64: `nix build .#sysdig-lsp-linux-arm64`
- Darwin x86_64: `nix build .#sysdig-lsp-darwin-amd64`
- Darwin aarch64: `nix build .#sysdig-lsp-darwin-arm64`

Windows is not yet supported because the Sysdig CLI Scanner is not releasing a .exe for now, but you can still build it with `nix build .#sysdig-lsp-windows-amd64`
Expand Down
1 change: 0 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

sysdig-lsp-linux-amd64 = pkgsCross.gnu64.pkgsStatic.sysdig-lsp;
sysdig-lsp-linux-arm64 = pkgsCross.aarch64-multiplatform.pkgsStatic.sysdig-lsp;
sysdig-lsp-darwin-amd64 = pkgsCross.x86_64-darwin.sysdig-lsp;
sysdig-lsp-darwin-arm64 = pkgsCross.aarch64-darwin.sysdig-lsp;
sysdig-lsp-windows-amd64 = pkgsCross.mingwW64.sysdig-lsp;
};
Expand Down
Loading