forked from M-Labs/artiq
flake: run gateware simulations
This commit is contained in:
parent
b9bfe090f4
commit
cee9f3f44e
12
flake.nix
12
flake.nix
|
@ -436,6 +436,18 @@
|
||||||
|
|
||||||
hydraJobs = {
|
hydraJobs = {
|
||||||
inherit (packages.x86_64-linux) artiq artiq-board-kc705-nist_clock openocd-bscanspi;
|
inherit (packages.x86_64-linux) artiq artiq-board-kc705-nist_clock openocd-bscanspi;
|
||||||
|
gateware-sim = pkgs.stdenvNoCC.mkDerivation {
|
||||||
|
name = "gateware-sim";
|
||||||
|
buildInputs = [
|
||||||
|
(pkgs.python3.withPackages(ps: with packages.x86_64-linux; [ migen misoc artiq ]))
|
||||||
|
];
|
||||||
|
phases = [ "buildPhase" ];
|
||||||
|
buildPhase =
|
||||||
|
''
|
||||||
|
python -m unittest discover -v artiq.gateware.test
|
||||||
|
touch $out
|
||||||
|
'';
|
||||||
|
};
|
||||||
kc705-hitl = pkgs.stdenvNoCC.mkDerivation {
|
kc705-hitl = pkgs.stdenvNoCC.mkDerivation {
|
||||||
name = "kc705-hitl";
|
name = "kc705-hitl";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue