From 8d05b1cda1b26b4ba134f114b9424446b410ac76 Mon Sep 17 00:00:00 2001 From: Steven Koo Date: Tue, 14 Jun 2022 09:27:41 -0500 Subject: ci: Add n310 into devtests This commit adds support for reimaging n3xx devices and running devtest against a n310. This uses Labgrid to control an sdmux, which we then reimage the device. In the future, other devices can use this support to run other tests. Signed-off-by: Steven Koo --- .../tests/rhombus-labgrid/docker-compose.yml | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 .ci/templates/tests/rhombus-labgrid/docker-compose.yml (limited to '.ci/templates/tests/rhombus-labgrid/docker-compose.yml') diff --git a/.ci/templates/tests/rhombus-labgrid/docker-compose.yml b/.ci/templates/tests/rhombus-labgrid/docker-compose.yml new file mode 100755 index 000000000..22a1eb219 --- /dev/null +++ b/.ci/templates/tests/rhombus-labgrid/docker-compose.yml @@ -0,0 +1,26 @@ +version: '3.3' +services: + coordinator: + image: "labgrid-coordinator" + volumes: + - "./crossbar:/home/root/crossbar:Z" + tty: true + network_mode: "host" + restart: unless-stopped + command: bash -c "cp /home/root/crossbar/places.yaml /opt/crossbar/places.yaml && + crossbar start --config /opt/labgrid/.crossbar/config.yaml" + exporter: + image: "labgrid-exporter" + volumes: + - "./exporter-conf:/opt/conf:Z" + - "/run/udev:/run/udev:ro" + - "/dev:/dev" + depends_on: + - coordinator + tty: true + network_mode: "host" + restart: unless-stopped + stdin_open: true + privileged: true + command: bash -c "set -e && + /opt/wait-for-it/wait-for-it.sh 127.0.0.1:20408 -- labgrid-exporter /opt/conf/exporter.yaml" -- cgit v1.2.3