tests: disable tests depending on broken sourcekit on aarch64-linux

This commit is contained in:
Gaetan Lepage 2025-04-20 21:55:52 +02:00 committed by github-actions[bot]
parent 70a9a0d4c1
commit d6709382e7
3 changed files with 10 additions and 0 deletions

View file

@ -47,6 +47,9 @@ let
"typst_lsp" "typst_lsp"
] ]
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [ ++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
# TODO: 2025-04-20 build failure (swift-corelibs-xctest)
"sourcekit"
# pkgs.vectorcode is not available on this platform # pkgs.vectorcode is not available on this platform
"vectorcode_server" "vectorcode_server"

View file

@ -35,6 +35,10 @@
"phpstan" "phpstan"
"psalm" "psalm"
] ]
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
# TODO: 2025-04-20 build failure (swift-corelibs-xctest)
"swiftformat"
]
++ lib.optionals hostPlatform.isDarwin [ ++ lib.optionals hostPlatform.isDarwin [
# As of 2024-01-04, texliveMedium is broken on darwin # As of 2024-01-04, texliveMedium is broken on darwin
# TODO: re-enable those tests when fixed # TODO: re-enable those tests when fixed

View file

@ -114,6 +114,9 @@
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [ ++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
# Not available on aarch64-linux # Not available on aarch64-linux
"smlfmt" "smlfmt"
# TODO: 2025-04-20 build failure (swift-corelibs-xctest)
"swift_format"
]; ];
in in
# Enable every none-ls source that has an option # Enable every none-ls source that has an option