diff options
| author | seth <[email protected]> | 2023-05-29 11:51:09 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-29 11:54:03 -0400 |
| commit | 87e220c708bf0badc8ef663b236a2139d6a19bad (patch) | |
| tree | b903875061f2ca6263a34411812527e3ebae50f9 /flake.nix | |
| parent | 4c33035fbbc338592baa5be3781b88d7291f80fe (diff) | |
chore: move back to hercules-ci
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 16 |
1 files changed, 11 insertions, 5 deletions
@@ -53,17 +53,23 @@ formatter = forEachSystem (pkgs: pkgs.alejandra); - hydraJobs = let - supportedSystems = [ + herculesCI = let + ciSystems = [ "x86_64-linux" "aarch64-linux" ]; lib = self.lib {inherit (self) inputs;}; - in - with lib.ci supportedSystems; { - packages = mkCompatiblePkgs self.packages; + inherit (lib.ci ciSystems) mkCompatiblePkgs; + in { + inherit ciSystems; + + onPush.default = { + outputs = { + packages = mkCompatiblePkgs self.packages; + }; }; + }; packages = forEachSystem ( pkgs: let |
