nix-scripts/zynq.nix

66 lines
2.0 KiB
Nix
Raw Normal View History

2020-05-03 07:45:54 +08:00
let
2020-09-09 19:13:35 +08:00
pkgs = import <nixpkgs> {};
2020-09-09 19:11:41 +08:00
zynq-rs-latest = import <zynq-rs>;
artiq-zynq = import <artiq-zynq>;
2020-07-04 23:56:57 +08:00
artiq-fast = import <artiq-fast> { inherit pkgs; };
2020-05-03 07:45:54 +08:00
in
2020-05-03 09:46:28 +08:00
(
2020-09-09 19:11:41 +08:00
builtins.mapAttrs (key: value: pkgs.lib.hydraJob value) zynq-rs-latest
2020-05-03 09:46:28 +08:00
) // (
builtins.mapAttrs (key: value: pkgs.lib.hydraJob value) artiq-zynq
2020-07-04 17:27:42 +08:00
) // {
2020-07-13 19:05:50 +08:00
gateware-sim = pkgs.lib.hydraJob (pkgs.stdenv.mkDerivation {
name = "gateware-sim";
buildInputs = [ artiq-fast.migen artiq-fast.migen-axi artiq-fast.artiq ];
phases = [ "buildPhase" ];
buildPhase =
''
python -m unittest discover ${<artiq-zynq>}/src/gateware -v
touch $out
'';
});
zc706-hitl-tests = pkgs.lib.hydraJob (pkgs.stdenv.mkDerivation {
2020-07-04 17:27:42 +08:00
name = "zc706-hitl-tests";
# requires patched Nix
__networked = true;
buildInputs = [
pkgs.netcat pkgs.openssh pkgs.rsync artiq-fast.artiq artiq-fast.artiq-netboot
2020-07-04 17:27:42 +08:00
];
phases = [ "buildPhase" ];
buildPhase =
''
2020-07-06 12:44:32 +08:00
echo Power cycling board...
(echo b; sleep 5; echo B; sleep 5) | nc -N -w6 192.168.1.31 3131
2020-07-06 12:44:32 +08:00
echo Power cycle done.
2020-07-04 23:58:32 +08:00
export USER=hydra
2020-09-09 19:26:22 +08:00
export OPENOCD_ZYNQ=${artiq-zynq.zynq-rs}/openocd
export SZL=${(import artiq-zynq.zynq-rs).zc706-szl}/szl.elf
pushd ${<artiq-zynq>}
2020-09-01 17:53:07 +08:00
bash ${<artiq-zynq>}/remote_run.sh -h rpi-4 -o "-F /dev/null -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=ERROR -i /opt/hydra_id_rsa" -d ${artiq-zynq.zc706-nist_qc2-jtag}
popd
2020-07-04 17:27:42 +08:00
2020-07-06 12:44:32 +08:00
echo Waiting for the firmware to boot...
2020-07-04 23:56:57 +08:00
sleep 15
2020-07-06 12:44:32 +08:00
echo Running test kernel...
artiq_run --device-db ${<artiq-zynq>}/examples/device_db.py ${<artiq-zynq>}/examples/mandelbrot.py
2020-07-04 23:56:57 +08:00
2020-09-01 17:53:07 +08:00
echo Running ARTIQ unit tests...
2020-09-01 17:53:58 +08:00
ARTIQ_ROOT=${<artiq-zynq>}/examples python -m unittest discover artiq.test.coredevice -v
2020-09-01 17:53:07 +08:00
2020-07-04 17:27:42 +08:00
touch $out
echo Completed
2020-11-10 22:49:07 +08:00
(echo b; sleep 5) | nc -N -w6 192.168.1.31 3131
echo Board powered off
2020-07-04 17:27:42 +08:00
'';
});
}