1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-04-08 18:04:38 +00:00

Merge pull request #131 from Mic92/drone

Drone ci
This commit is contained in:
Jörg Thalheim 2021-11-07 09:21:26 +00:00 committed by GitHub
commit 9ada3684e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 3 deletions

15
.drone.yml Normal file
View file

@ -0,0 +1,15 @@
---
kind: pipeline
name: nixos-tests
type: exec
steps:
- name: test
commands:
- nix-build -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz -A sops-install-secrets.tests
- nix-build -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixos-20.09.tar.gz -A sops-install-secrets.tests
---
kind: signature
hmac: 6cd4aeea3ec1f0b37d44edb6db25764fcae5aa68215ffa0a542cb6e47a54cfa5
...

View file

@ -54,6 +54,4 @@ in rec {
'';
fixupPhase = ":";
});
# integration tests
} // pkgs.lib.optionalAttrs (pkgs.stdenv.isLinux) sops-install-secrets.tests
}