Skip to content

Commit

Permalink
shit
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Feb 22, 2024
1 parent 986bd99 commit 08d60a3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
needs: configure
runs-on: self-hosted
strategy:
matrix:
out: ${{ fromJson(needs.configure.outputs.matrix) }}
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- run: echo ${{ matrix.out }}
Expand Down
14 changes: 8 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@
let
inherit (inputs.nixpkgs) lib;
perSystem = k: lib.concatLists (lib.flip lib.mapAttrsToList inputs.self.${k} (system: s:
builtins.map (name: "${k}.${system}.${name}") (lib.attrNames s)
builtins.map (name: { out = "${k}.${system}.${name}"; }) (lib.attrNames s)
));
in
lib.concatLists [
(perSystem "packages")
#(perSystem "devShells")
#(perSystem "checks")
];
{
include = lib.concatLists [
(perSystem "packages")
#(perSystem "devShells")
#(perSystem "checks")
];
};
perSystem = { self', system, lib, config, pkgs, ... }: {
# Our only Haskell project. You can have multiple projects, but this template
# has only one.
Expand Down

0 comments on commit 08d60a3

Please sign in to comment.