Skip to content

Commit

Permalink
nix ci: cachix push
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed Jun 30, 2024
1 parent 34c3395 commit a945207
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
with:
extra-conf: |
trusted-substituters = https://gepetto.cachix.org
trusted-public-keys = gepetto.cachix.org-1:toswMl31VewC0jGkN6+gOelO2Yom0SOHzPwJMY2XiDY=
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix build --accept-flake-config
- run: nix --accept-flake-config build -L
- run: nix --accept-flake-config run .#cachix push gepetto $(readlink result)
env:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
9 changes: 6 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@
...
}:
{
packages.default = pkgs.callPackage ./. {
hpp-centroidal-dynamics = inputs.hpp-centroidal-dynamics.packages.${system}.default;
ndcurves = inputs.ndcurves.packages.${system}.default;
packages = {
inherit (pkgs) cachix;
default = pkgs.callPackage ./. {
hpp-centroidal-dynamics = inputs.hpp-centroidal-dynamics.packages.${system}.default;
ndcurves = inputs.ndcurves.packages.${system}.default;
};
};
devShells.default = pkgs.mkShell { inputsFrom = [ self'.packages.default ]; };
};
Expand Down

0 comments on commit a945207

Please sign in to comment.