Skip to content

Commit

Permalink
tests/lsp: disable ols test on ARM (broken)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Jan 4, 2024
1 parent 3316436 commit 0dcc271
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test-sources/plugins/lsp/_lsp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@
metals.enable = true;
nil_ls.enable = true;
nixd.enable = true;
ols.enable = pkgs.stdenv.hostPlatform.system != "aarch64-linux";
# As of 2024-01-04, ols is broken on ARM (aarch64-darwin and aarch64-linux)
# TODO: re-enable this test when fixed
ols.enable = !pkgs.stdenv.isAarch64;
omnisharp.enable = true;
perlpls.enable = true;
pest_ls.enable = true;
Expand Down

0 comments on commit 0dcc271

Please sign in to comment.