This commit is contained in:
LavaDesu 2021-06-28 08:57:18 +07:00
parent 287352e41a
commit c37ff41ca3
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 4 additions and 4 deletions

View file

@ -25,10 +25,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
kernelVersion: ["5.4", "5.10", "5.11"] kernelVersion: ["54", "510", "511"]
sched: [bmq, cfs, cacule, muqss, pds] sched: [bmq, cfs, cacule, muqss, pds]
include: include:
- kernelVersion: "5.10" - kernelVersion: "510"
sched: upds sched: upds
steps: steps:
- uses: actions/checkout@v2.3.4 - uses: actions/checkout@v2.3.4

View file

@ -29,7 +29,7 @@
} }
# For github workflow tests # For github workflow tests
// builtins.listToAttrs (builtins.map (e: { // builtins.listToAttrs (builtins.map (e: {
name = "linux_tkg-${e.scheduler}-${e.version}"; name = "linux_tkg-${e.scheduler}-${pkgs.lib.stringAsChars (x: if x == "." then "" else x) e.version}";
value = callPackage ./packages/linux-tkg { value = callPackage ./packages/linux-tkg {
inherit (e) scheduler version; inherit (e) scheduler version;
kernelPatches = with pkgs.kernelPatches; [ kernelPatches = with pkgs.kernelPatches; [
@ -41,7 +41,7 @@
scheduler = ["bmq" "cfs" "cacule" "muqss" "pds"]; scheduler = ["bmq" "cfs" "cacule" "muqss" "pds"];
version = ["5.4" "5.10" "5.11"]; version = ["5.4" "5.10" "5.11"];
})) // { })) // {
"linux_tkg-upds-5.10" = callPackage ./packages/linux-tkg { "linux_tkg-upds-510" = callPackage ./packages/linux-tkg {
version = "5.10"; version = "5.10";
scheduler = "upds"; scheduler = "upds";
kernelPatches = with pkgs.kernelPatches; [ kernelPatches = with pkgs.kernelPatches; [