| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
freedreno/ci: Isolate dEQP-EGL reset_context tests To reduce flakes, separate out the dEQP-EGL tests that are intentionally triggering GPU hangs. This avoids some kernel side issues with bad handling of ringbuffer-full scenarios, causing innocent tests to flake. Signed-off-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10560> | 5 年前 | |
ci: Uprev piglit to b3a9fa345 ("framework/replay: Quote resource names before signing") The PIGLIT_BUILD_CL_TESTS related changes were shamelessly stolen from https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6441/diffs?commit_id=5742be00e6b493b5289ed8120eb06f10d341ea3a. v2: Remove glslang-tools from arm_build.sh. Suggested by Michel. Reviewed-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10492> | 5 年前 | |
gitlab-ci: attach the Fossilize log file as artifact on failure It might be help. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5627> | 6 年前 | |
ci: Move -Werror enabling from job definitions to meson build script It was enabled in all jobs. Reviewed-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10220> | 5 年前 | |
ci: Add timeout for traces jobs Otherwise it is next to impossible to figure out *which* trace is hanging (because you don't get artifact upload if the CI job hits the overall 60min timeout). Signed-off-by: Rob Clark <robdclark@chromium.org> Reviewed-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10490> | 5 年前 | |
gallium/u_vbuf: avoid dereferencing NULL pointer When I last time fixed this, I missed that continuing here would make us leak pointers in the translate state, which is what made this avoid a crash in the first place. That's not great, we need to set *some* pointer in this case. The obvious option would be NULL, but that means that the translate-code also needs to support NULL-pointers here. Instead, let's point to a small, static buffer that contains enough zero-data for the largest possible vertex attribute. This avoids having to add more NULL-checks. Fixes: a8e8204b186 ("gallium/u_vbuf: support NULL-resources") Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7773> | 5 年前 | |
ci: Run tests on i386 cross builds Yes, some tests fail, but we can turn those into XFAILs at meson time. Better to keep the things that work working than not cover them at all. Unfortunately XPASS results will not cause the build to fail until we update CI to meson 0.51 or newer. Reviewed-by: Daniel Stone <daniels@collabora.com> | 6 年前 | |
ci: update xfails for ppc64le and s390x tests are passing now Acked-by: Daniel Stone <daniel@fooishbar.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9773> | 5 年前 | |
u_format: Add missing BE swizzles for R8SG8SB8UX8U_NORM Compare to the swizzles for PIPE_FORMAT_R10G10B10A2_UNORM and R5SG5SB6U_NORM. This should fix our last BE pack/unpack failure. Reviewed-by: Adam Jackson <ajax@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7776> | 5 年前 | |
ci: Move deqp-default-skips.txt back to .gitlab-ci/ Since we don't manually enumerate the drivers using it, we have to retest all drivers when changing it (which basically never happens, anyway). Reviewed-by: Michel Dänzer <mdaenzer@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9353> | 5 年前 | |
ci: Add DEQP_CASELIST_INV_FILTER Inverts the match compared to DEQP_CASELIST_FILTER Signed-off-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10560> | 5 年前 | |
docs: Move the current CI .rst doc to docs/ci/ and link to it from .gitlab-ci. I want the docs to be discoverable next to the code, and sphinx insists that all docs are under the top-level docs dir (sigh). We can't symlink from that dir to .gitlab-ci because windows builds can't do symlinks, so link back the other direction. Reviewed-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5510> | 6 年前 | |
ci: specify MinIO's host URL in a global variable Signed-off-by: Andres Gomez <agomez@igalia.com> Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6388> | 5 年前 | |
gitlab-ci: attach the Fossilize log file as artifact on failure It might be help. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5627> | 6 年前 | |
gitlab-ci: add parallel-rdp fossils https://github.com/Themaister/parallel-rdp These fossils contain very large and complex shaders. The small_*.foz files use 8/16-bit arithmetic. Only RADV uses Fossilize. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Andres Gomez <agomez@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5542> | 6 年前 | |
ci: Set date in LAVA DUTs from NTP servers The MinIO server is sometimes complaining about the submitted date being too off. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Reviewed-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6135> | 5 年前 | |
ci: Use the caching proxy for Mesa artifacts Allows to reduce the load and latency when getting artifacts. Signed-off-by: Corentin Noël <corentin.noel@collabora.com> Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10285> | 5 年前 | |
ci: Use the caching proxy for Mesa artifacts Allows to reduce the load and latency when getting artifacts. Signed-off-by: Corentin Noël <corentin.noel@collabora.com> Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10285> | 5 年前 | |
ci: Use a single template for LAVA jobs It's a pain to keep both templates in sync and there aren't really that many differences. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9950> | 5 年前 | |
ci: remove nouveau from shader-db runs This is needed since we're about to reinstate the fencing mechanism on screen destruction. Until we figure out another way to handle it, this will cause hangs on exit with the shim. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Cc: mesa-stable # 21.0 Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8867> | 5 年前 | |
ci: Add missing vulkan dep for freedreno (turnip) and v3dv test jobs. We might miss testing core vk changes without this. Reviewed-by: Michel Dänzer <mdaenzer@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10472> | 5 年前 | |
gitlab-ci: Add a pkg-config for mingw The one debian provides is broken in buster+, so I've just written my own. This allows meson to find the installed zlib and prevents it from falling back to wraps. Reviewed-by: Eric Engestrom <eric.engestrom@intel.com> | 6 年前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 5 年前 | ||
| 5 年前 | ||
| 6 年前 | ||
| 5 年前 | ||
| 5 年前 | ||
| 5 年前 | ||
| 6 年前 | ||
| 5 年前 | ||
| 5 年前 | ||
| 5 年前 | ||
| 5 年前 | ||
| 6 年前 | ||
| 5 年前 | ||
| 6 年前 | ||
| 6 年前 | ||
| 5 年前 | ||
| 5 年前 | ||
| 5 年前 | ||
| 5 年前 | ||
| 5 年前 | ||
| 5 年前 | ||
| 6 年前 |