Skip to content

Commit

Permalink
out
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Feb 22, 2024
1 parent de97402 commit f2eafde
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ jobs:
needs: configure
runs-on: self-hosted
strategy:
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
matrix:
out: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- run: echo ${{matrix}}
- run: echo ${{matrix.out}}
# - run: nixci
# - run: nix build -L .#${{matrix.name}}
# - run: echo .#${{matrix.x.name}}
Expand Down
12 changes: 5 additions & 7 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,11 @@
builtins.map (name: "${k}.${system}.${name}") (lib.attrNames s)
));
in
{
include = lib.concatLists [
(perSystem "packages")
#(perSystem "devShells")
#(perSystem "checks")
];
};
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 f2eafde

Please sign in to comment.