Compare commits

...

3 commits

Author SHA1 Message Date
Bruno BELANYI d73cadf0c3 ci: fix path to build output
Some checks failed
continuous-integration/drone/push Build is failing
2021-08-08 20:10:04 +02:00
Bruno BELANYI 2a856bd231 ci: add check step 2021-08-08 20:10:04 +02:00
Bruno BELANYI d8f14cd212 nix: use eachDefaultSystem
Otherwise `nix flake check` breaks...
2021-08-08 20:09:46 +02:00
2 changed files with 6 additions and 3 deletions

View file

@ -7,12 +7,15 @@ steps:
commands: commands:
- nix develop -c make - nix develop -c make
- name: check
commands:
- nix flake check
- name: deploy - name: deploy
commands: commands:
- nix run github:ambroisie/nix-config#drone-scp - nix run github:ambroisie/nix-config#drone-scp
environment: environment:
SCP_SOURCE: /drone/src/*.pdf SCP_SOURCE: '*.pdf'
SCP_STRIP_COMPONENTS: 2 # Make sure the tarball doesn't contain leading path
SCP_RM: true # Make sure only the newly generated files are left SCP_RM: true # Make sure only the newly generated files are left
SCP_HOST: SCP_HOST:
from_secret: ssh_host from_secret: ssh_host

View file

@ -7,7 +7,7 @@
}; };
outputs = { self, nixpkgs, futils } @ inputs: outputs = { self, nixpkgs, futils } @ inputs:
futils.lib.eachSystem futils.lib.allSystems (system: futils.lib.eachDefaultSystem (system:
let let
inherit (nixpkgs) lib; inherit (nixpkgs) lib;
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};