diff options
author | Tomeu Vizoso <[email protected]> | 2020-04-01 13:07:46 +0200 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-07-07 11:52:30 +0000 |
commit | dcd171f5e9bd612b33144c90e4b0c1ac919498f0 (patch) | |
tree | 266e0bbc66ef997799249f4663be29f5c84a6853 /.gitlab-ci/lava-deqp.yml.jinja2 | |
parent | bf3d4b1adde4c354ac31e2d7a679dc3946f4abc2 (diff) |
gitlab-ci: More stable URL for kernel and ramdisk artifacts, for LAVA
Place the kernel and ramdisk into a place in the file server so the URL
will only change when the contents also change.
Also put the Mesa build into a separate tarball so the ramdisk's
contents don't change every build.
With proper caching in place, all devices in the same farm need only to
download the mesa tarball once, saving time.
As we switch to MinIO for making kernels and rootfs available to LAVA
devices, we can stop using Docker to distribute them.
Instead, build when needed in separate jobs that push directly to MinIO,
from where LAVA devices can download them.
Signed-off-by: Tomeu Vizoso <[email protected]>
Acked-by: Daniel Stone <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5515>
Diffstat (limited to '.gitlab-ci/lava-deqp.yml.jinja2')
-rw-r--r-- | .gitlab-ci/lava-deqp.yml.jinja2 | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/.gitlab-ci/lava-deqp.yml.jinja2 b/.gitlab-ci/lava-deqp.yml.jinja2 index 1ee127224f4..92a48ed7915 100644 --- a/.gitlab-ci/lava-deqp.yml.jinja2 +++ b/.gitlab-ci/lava-deqp.yml.jinja2 @@ -21,13 +21,6 @@ actions: - deploy: timeout: minutes: 10 -{% if boot_method == "fastboot" %} -{# fastboot has just one boot image with the dtb and rootfs packed in #} - to: fastboot - images: - boot: - url: {{ base_artifacts_url }}/{{ kernel_image_name }} -{% else %} to: tftp kernel: url: {{ base_artifacts_url }}/{{ kernel_image_name }} @@ -35,11 +28,10 @@ actions: {{ kernel_image_type }} {% endif %} ramdisk: - url: {{ base_artifacts_url }}/lava-rootfs-{{ arch }}.cpio.gz + url: {{ base_artifacts_url }}/lava-rootfs.cpio.gz compression: gz dtb: url: {{ base_artifacts_url }}/{{ device_type }}.dtb -{% endif %} os: oe - boot: timeout: @@ -78,6 +70,9 @@ actions: - mount -t devtmpfs none /dev || echo possibly already mounted - mkdir -p /dev/pts - mount -t devpts devpts /dev/pts + - echo "nameserver 8.8.8.8" > /etc/resolv.conf + - date "+%Y%m%d %H%M" -s "{{ date }}" + {% if env_vars %} - export {{ env_vars }} @@ -86,6 +81,8 @@ actions: # deqp-runner.sh assumes some stuff is in pwd - cd / + - wget -S --progress=dot:giga -O- {{ mesa_url }} | tar -xz + - export DEQP_NO_SAVE_RESULTS=1 - 'export DEQP_RUNNER_OPTIONS="--shuffle false"' - export DEQP_EXPECTED_FAILS=deqp-{{ gpu_version }}-fails.txt |