mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
ci/check: drop "tests"; they're handled by ci/tests
This commit is contained in:
parent
801de78836
commit
1b25700ae3
1 changed files with 4 additions and 2 deletions
|
@ -52,15 +52,17 @@
|
||||||
}
|
}
|
||||||
))
|
))
|
||||||
(lib.collect (lib.isType "check"))
|
(lib.collect (lib.isType "check"))
|
||||||
|
# Tests are handled by a different workflow
|
||||||
|
(builtins.filter (x: !lib.strings.hasPrefix "test-" x.name))
|
||||||
(lib.groupBy' (builds: x: builds ++ [ x.build ]) [ ] (x: x.name))
|
(lib.groupBy' (builds: x: builds ++ [ x.build ]) [ ] (x: x.name))
|
||||||
(lib.mapAttrsToList (name: builds: { inherit name builds; }))
|
(lib.mapAttrsToList (name: builds: { inherit name builds; }))
|
||||||
|
|
||||||
# Only build one one system for non-test attrs
|
# Only build one one system per check
|
||||||
# TODO: this is very heavy handed, maybe we want some exceptions?
|
# TODO: this is very heavy handed, maybe we want some exceptions?
|
||||||
(map (
|
(map (
|
||||||
matrix:
|
matrix:
|
||||||
matrix
|
matrix
|
||||||
// lib.optionalAttrs (!lib.strings.hasPrefix "test-" matrix.name) {
|
// {
|
||||||
builds = [
|
builds = [
|
||||||
(getPrimaryBuild matrix.builds)
|
(getPrimaryBuild matrix.builds)
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue