still trying to understand undocumented 'previous hydra build' option

pull/16/head
Sebastien Bourdeauducq 2019-02-15 23:39:57 +08:00
parent 48cf06b323
commit 01972bef8a
1 changed files with 27 additions and 4 deletions

View File

@ -1,6 +1,29 @@
{ pkgs ? import <nixpkgs> {}}:
{ mainBuild }:
{
fooxx = pkgs.runCommand "xxxxabcd" { } "echo ${mainBuild} > $out";
}
let
mainChannel = import <mainChannel>;
#artiq-board = import <mainChannel/artiq-board.nix> { inherit pkgs; };
#conda-artiq-board = import <mainChannel/conda-artiq-board.nix> { inherit pkgs; };
#target = "kasli";
#variants = ["berkeley" "mitll2" "mitll" "nudt" "sysu" "tsinghua2" "tsinghua" "unsw" "ustc" "wipm"];
#jobs = pkgs.lib.lists.foldr (variant: start:
# let
# json = ../. + "/${variant}.json";
# boardBinaries = conda-artiq-board {
# inherit target variant;
# buildCommand = "python -m artiq.gateware.targets.kasli_generic ${json}";
# };
# in
# start // {
# "artiq-board-${target}-${variant}" = boardBinaries;
# "conda-artiq-board-${target}-${variant}" = conda-artiq-board {
# boardBinaries = boardBinaries;
# inherit target variant;
# };
#}) {} variants;
in
{
foo = pkgs.runCommand "xxxxabcd" { } "echo ${mainChannel} > $out";
}