1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-04-07 01:23:34 +00:00
sops-nix/.drone.yml

38 lines
857 B
YAML
Raw Normal View History

2020-07-29 09:49:49 +01:00
---
kind: pipeline
name: nixos-tests
steps:
- name: test
2020-08-01 23:17:39 +01:00
image: busybox
environment:
NIX_REMOTE: daemon
PATH: /nix/var/nix/profiles/system/sw/bin/
PAGER: cat
USER: root
volumes:
- name: nixstore
path: /nix
2020-11-08 14:27:11 +01:00
- name: nixconf
path: /etc/nix
- name: sslcerts
path: /etc/ssl
2020-07-29 09:49:49 +01:00
commands:
2020-11-08 14:48:21 +01:00
- 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
2020-08-01 23:17:39 +01:00
volumes:
- name: nixstore
host:
path: /nix
2020-11-08 14:27:11 +01:00
- name: nixconf
host:
path: /nix/var/nix/profiles/system/etc/nix
- name: sslcerts
host:
path: /nix/var/nix/profiles/system/etc/ssl
2020-07-29 09:49:49 +01:00
---
kind: signature
2020-11-08 14:48:21 +01:00
hmac: 5bb657faca0ecd18576534f7e486511d6f698595cc244d9617e660ef2ddb678d
2020-07-29 09:49:49 +01:00
...