- Apr 21, 2022
-
-
Rémi Duraffort authored
Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Rémi Duraffort authored
Export dispatcher ip to shell. See merge request lava/lava!1737
-
Rémi Duraffort authored
Add morello device-type See merge request lava/lava!1742
-
Rémi Duraffort authored
Currently a simple copy of the n1sdp. Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
- Apr 19, 2022
-
-
Rémi Duraffort authored
Doc: fix local lava-run usage. See merge request lava/lava!1740
-
Larry Shen authored
Signed-off-by: Larry Shen <larry.shen@nxp.com>
-
Rémi Duraffort authored
boot: qemu: honor all docker parameters See merge request lava/lava!1739
-
- Apr 18, 2022
-
-
Antonio Terceiro authored
This includes for example, not doing a `docker pull` if the docker section specifies `local: true`. This fixes for example using local docker images with qemu.
-
- Apr 15, 2022
-
-
Rémi Duraffort authored
lava-docker-worker: fix termination See merge request lava/lava!1738
-
Rémi Duraffort authored
Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Rémi Duraffort authored
Give a name to the docker container and kill it when lava-docker-worker is killed. The systemd service is also waiting infinitely for lava-docker-worker to finish. Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Larry Shen authored
Signed-off-by: Larry Shen <larry.shen@nxp.com>
-
- Apr 14, 2022
-
-
Rémi Duraffort authored
Enable minimal boots on qemu See merge request lava/lava!1734
-
Rémi Duraffort authored
lava-docker-worker: log to the filesystem by default See merge request lava/lava!1736
-
Rémi Duraffort authored
Allow to run img2simg after applying the overlays See merge request lava/lava!1735
-
Rémi Duraffort authored
Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Rémi Duraffort authored
Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
- Apr 13, 2022
-
-
Antonio Terceiro authored
-
Antonio Terceiro authored
This allows for example to use minimal boot actions with QEMU devices. Since the check for the existance of commands was being done after it was already used anyway, this can't introduce a regression. If commands were not defined before, this would cause a crash at the beginning of the job. Now, if there are no defined commands, validation will skip all further checks, and the ConnectDevice action will only work if there is already a serial connection made by a previous action.
-
- Apr 12, 2022
-
-
Rémi Duraffort authored
XML-RPC API: indicate if the template/config/env(-dut) is the default one or not See merge request lava/lava!1733
-
Rémi Duraffort authored
This is usefull for remotelly managing an instance (for instance with lavacli). Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Rémi Duraffort authored
Files: delete the file if the content is empty See merge request lava/lava!1732
-
Rémi Duraffort authored
Allows to delete the files from the apis by sending an empty content. Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Rémi Duraffort authored
lava-(docker-)worker: improve parser See merge request lava/lava!1727
-
- Apr 11, 2022
-
-
Rémi Duraffort authored
Use the right qemu architecture for arm64 See merge request lava/lava!1716
-
Rémi Duraffort authored
django-tables2: fix crash when accessing non-existing page See merge request lava/lava!1731
-
Corentin LABBE authored
Qemu architecture for arm64 is aarch64, introduce an helper to handle that.
-
Rémi Duraffort authored
See https://github.com/jieter/django-tables2/pull/743 This has been released in 2.3.1 so manually patched older versions. Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
- Apr 08, 2022
-
-
Rémi Duraffort authored
Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Rémi Duraffort authored
1/ Allow to log to a file (/var/log/lava-dispatcher-host/lava-docker-worker.log by default) 2/ Keep the daemon running in case of errors 3/ Quit cleanly by waiting for jobs to finish Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Rémi Duraffort authored
Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Rémi Duraffort authored
Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Antonio Terceiro authored
scheduler: do not lock the worker table See merge request lava/lava!1728
-
- Apr 07, 2022
-
-
Rémi Duraffort authored
DockerDriver: really ensure unique container names See merge request lava/lava!1729
-
Antonio Terceiro authored
The uuid was still the same for a given instance of DockerDriver, which is unique for each action, so the random suffix needs to be added for each new run() or get_output() call. Fixes: 0374b753 ("DockerDriver: ensure unique container names")
-
Rémi Duraffort authored
Instead of filtering the device by joining the worker table, list the online workers and filter devices by their worker_hostname. This should avoid the scheduler to lock both the device and worker tables. Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
Rémi Duraffort authored
DockerDriver: ensure unique container names See merge request lava/lava!1725
-
Antonio Terceiro authored
This avoids a race condition where two commands are run in quick succession, and the second fails because it cannot start a container with the same name as the one before. Containers are cleaned up right after the command finishes, but there is a possible race condition between the removal of the first container (which is done in the background by the docker daemon), and starting a new one. We mitigate this be ensuring that each command run through docker has a unique name, by appending a UUID to it. Signed-off-by: Rémi Duraffort <remi.duraffort@linaro.org>
-
- Apr 05, 2022
-
-
Rémi Duraffort authored
lava_server: fix login page when socialaccount is disabled See merge request lava/lava!1724
-
- Apr 04, 2022
-
-
Antonio Terceiro authored
-