Skip to content

Commit

Permalink
ffu
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Feb 22, 2024
1 parent c17457d commit dcd7e2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- run: echo ${{matrix.output}}
- run: echo ${{matrix.name}}
# - run: nixci
- run: nix build -L .#${{matrix.output}}
- run: nix build -L .#${{matrix.name}}
#- run: nix build -L .#packages.aarch64-linux.default
#- run: nix build -L .#packages.x86_64-linux.default
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
let
inherit (inputs.nixpkgs) lib;
perSystem = k: lib.concatLists (lib.flip lib.mapAttrsToList inputs.self.${k} (system: s:
builtins.map (name: { output = "${k}.${system}.${name}"; }) (lib.attrNames s)
builtins.map (name: { name = "${k}.${system}.${name}"; }) (lib.attrNames s)
));
in
{
Expand Down

0 comments on commit dcd7e2b

Please sign in to comment.