From 263b04245ef9107dee58fccfa403ee7862fe033c Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 26 Apr 2019 18:27:06 +0800 Subject: [PATCH] add continuous build for helloworld examples --- release.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/release.nix b/release.nix index 21bcdc0..cab9867 100644 --- a/release.nix +++ b/release.nix @@ -1,5 +1,9 @@ { pkgs ? import {}}: let derivations = import ./derivations.nix { inherit pkgs; }; + jobs = derivations // { + helloworld_ecp5 = import ./examples/helloworld_ecp5.nix { inherit pkgs; }; + helloworld_kintex7 = import ./examples/helloworld_kintex7.nix { inherit pkgs; }; + }; in - builtins.mapAttrs (name: value: pkgs.lib.hydraJob value) derivations + builtins.mapAttrs (name: value: pkgs.lib.hydraJob value) jobs