home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 86851d20e5abbc72e23b6701b2673c517220e5e8
parent bff7a813d2816ee38db02f5d3101cfa2cacc9175
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Wed,  6 May 2020 08:31:19 +0200

builds/nixos: build on 19.09 and 20.03

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
A.builds/nixos.19.09.yml | 9+++++++++
A.builds/nixos.20.03.yml | 9+++++++++
D.builds/nixos.yml | 9---------
3 files changed, 18 insertions(+), 9 deletions(-)

diff --git a/.builds/nixos.19.09.yml b/.builds/nixos.19.09.yml @@ -0,0 +1,9 @@ +image: nixos/19.09 +sources: + - https://gitlab.com/vdemeester/home.git +secrets: + - 0818d60d-b587-4d4e-81d8-dc15072ccb97 +tasks: +- pkgs: | + export CACHIX_SIGNING_KEY=$(cat ~/.cachix.key) + nix-build home/pkgs | cachix push shortbrain diff --git a/.builds/nixos.20.03.yml b/.builds/nixos.20.03.yml @@ -0,0 +1,9 @@ +image: nixos/20.03 +sources: + - https://gitlab.com/vdemeester/home.git +secrets: + - 0818d60d-b587-4d4e-81d8-dc15072ccb97 +tasks: +- pkgs: | + export CACHIX_SIGNING_KEY=$(cat ~/.cachix.key) + nix-build home/pkgs | cachix push shortbrain diff --git a/.builds/nixos.yml b/.builds/nixos.yml @@ -1,9 +0,0 @@ -image: nixos/latest -sources: - - https://gitlab.com/vdemeester/home.git -secrets: - - 0818d60d-b587-4d4e-81d8-dc15072ccb97 -tasks: -- pkgs: | - export CACHIX_SIGNING_KEY=$(cat ~/.cachix.key) - nix-build home/pkgs | cachix push shortbrain