Searched +full:meson +full:- +full:logs (Results 1 – 25 of 38) sorted by relevance
12
| /third_party/libfuse/test/ |
| D | ci-build.sh | 3 set -e 5 TEST_CMD="python3 -m pytest --maxfail=99 test/" 15 SOURCE_DIR="$(readlink -f .)" 16 TEST_DIR="$(mktemp -dt libfuse-build-XXXXXX)" 21 cp -v "${SOURCE_DIR}/test/lsan_suppress.txt" . 27 for CC in gcc gcc-9 gcc-10 clang; do 29 mkdir build-${CC}; cd build-${CC} 36 if [ ${CC} == 'gcc-7' ]; then 37 build_opts='-D b_lundef=false' 41 if [ ${CC} == 'gcc-10' ]; then [all …]
|
| /third_party/mesa3d/.gitlab-ci/meson/ |
| D | time-strace.sh | 4 if [[ -z "$STRACEDIR" ]]; then 5 STRACEDIR=meson-logs/strace/$(for i in "$@"; do basename -z -- $i; echo -n _; done).$$ 8 mkdir -p $STRACEDIR 10 # If the test times out, meson sends SIGTERM to this process. 15 /usr/bin/time -v strace -ff -tt -T -o $STRACEDIR/log "$@" & 17 STRACEPID=$(ps --ppid $TIMEPID -o pid=) 18 TESTPID=$(ps --ppid $STRACEPID -o pid=) 21 trap 'kill -TERM $TESTPID; wait $TIMEPID; exit $?' TERM 27 # Only keep strace logs if the test timed out 28 rm -rf $STRACEDIR &
|
| /third_party/mesa3d/.github/workflows/ |
| D | macos.yml | 1 name: macOS-CI 8 macOS-CI: 12 runs-on: macos-11 15 MESON_EXEC: /Users/runner/Library/Python/3.11/bin/meson 17 - name: Checkout 19 - name: Install Dependencies 29 brew "molten-vk" 31 brew "pkg-config" 36 brew bundle --verbose 37 - name: Install Mako and meson [all …]
|
| /third_party/libinput/ |
| D | .gitlab-ci.yml | 9 # To change the gitlab CI, edit .gitlab-ci/ci.template and/or .gitlab-ci/config.yaml 10 # and run ci-fairy generate-template. For details, see 11 # https://freedesktop.pages.freedesktop.org/ci-templates/ci-fairy.html#templating-gitlab-ci-yml 14 # - we really want to run dnf/apt/... only once, updating on the test runner for 18 # This is handled by the ci-templates, ensuring containers are only rebuilt 21 # - GitLab only allows one script: set per job but we have a bunch of commands 22 # we need to re-run for each build (meson && ninja && etc). YAML cannot merge 27 # MESON_ARGS=-Denable-something=true 28 # NINJA_ARGS=dist ... to run 'ninja -C builddir dist' 35 # e.g. fedora:31@build-default [all …]
|
| /third_party/skia/m133/third_party/externals/harfbuzz/.circleci/ |
| D | config.yml | 4 win32-executor: 6 - image: cimg/base:2023.10 7 win64-executor: 9 - image: cimg/base:2023.10 10 dist-executor: 12 - image: cimg/base:2023.10 16 macos-aat-fonts: 20 - checkout 21 …- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config ragel freetype glib cairo python3 icu4c g… 22 - run: pip3 install meson --upgrade [all …]
|
| /third_party/mesa3d/.gitlab-ci/build/ |
| D | gitlab-ci.yml | 2 .build-common: 3 extends: .container+build-rules 7 # Build jobs don't take more than 1-3 minutes. 5-8 min max on a fresh runner 22 - _build/meson-logs/*.txt 23 - _build/meson-logs/strace 24 - _build/.ninja_log 25 - artifacts 28 .build-linux: 29 extends: .build-common 36 - !reference [default, before_script] [all …]
|
| /third_party/skia/third_party/externals/harfbuzz/.circleci/ |
| D | config.yml | 4 win32-executor: 6 - image: cimg/base:edge-20.04 7 win64-executor: 9 - image: cimg/base:edge-20.04 10 autotools-executor: 12 - image: cimg/base:edge-20.04 16 macos-aat-fonts: 20 - checkout 21 …- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config ragel freetype glib cairo python3 icu4c g… 22 - run: pip3 install meson --upgrade [all …]
|
| /third_party/mesa3d/src/intel/dev/ |
| D | meson.build | 2 # SPDX-License-Identifier: MIT 71 if with_tests and with_tools.contains('drm-shim') and with_tools.contains('intel') 86 …intel_drm_ld_preload = join_paths(meson.current_build_dir(), '..', 'tools', 'libintel_noop_drm_shi… 96 'STRACEDIR=meson-logs/strace/intel_device_info_override_test_@0@'.format(p),
|
| /third_party/mesa3d/ |
| D | .gitlab-ci.yml | 3 # |----------------------|-----------|-------------------------------------------------------------| 5 # | pre-merge pipeline | mesa/mesa | same as above, except its status doesn't affect the MR | 6 # | post-merge pipeline | mesa/mesa | pipeline immediately after merging | 9 # | direct-push pipeline | mesa/mesa | when commits are pushed directly to mesa/mesa, bypassing Mar… 19 # Pre-merge pipelines contain the exact same jobs as merge pipelines. 20 # Post-merge pipelines contain *only* the `pages` job that deploys the new 24 # test jobs (typically "full" variants of pre-merge jobs that only run 1/X 26 # Direct-push pipelines contain the same jobs as merge pipelines. 31 - if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push" 35 - if: $CI_COMMIT_TAG [all …]
|
| /third_party/mesa3d/docs/ci/ |
| D | index.rst | 5 --------- 8 We use it to test merge requests (MRs) before merging them (pre-merge testing), 9 as well as post-merge testing, for everything that hits ``main`` 14 The CI runs a number of tests, from trivial build-testing to complex GPU rendering: 16 - Build testing for a number of configurations and platforms 17 - Sanity checks (``meson test``) 18 - Most drivers are also tested using several test suites, such as the 19 `Vulkan/GL/GLES conformance test suite <https://github.com/KhronosGroup/VK-GL-CTS>`__, 21 - Replay of application traces 27 tool <#running-specific-ci-jobs>`__. [all …]
|
| /third_party/mesa3d/.gitlab-ci/windows/ |
| D | mesa_deps_choco.ps1 | 2 Write-Host "Updating TLS certificate store at:" 3 Get-Date 4 Remove-Item -Recurse -Force -ErrorAction SilentlyContinue "_tlscerts" | Out-Null 5 $certdir = (New-Item -ItemType Directory -Name "_tlscerts") 6 certutil -syncwithWU "$certdir" 7 Foreach ($file in (Get-ChildItem -Path "$certdir\*" -Include "*.crt")) { 8 Import-Certificate -FilePath $file -CertStoreLocation Cert:\LocalMachine\Root | Out-Null 10 Remove-Item -Recurse -Path $certdir 12 Write-Host "Installing graphics tools (DirectX debug layer) at:" 13 Get-Date [all …]
|
| /third_party/pulseaudio/ |
| D | NEWS | 5 * Updates to ALSA UCM-based setups 8 * webrtc-audio-processing dependency updated 9 * Trigger role groups added to module-role-cork 10 * XDG base directory spec for profile-set loading 14 * webrtc-audio-processing dependency updated 18 Alistair Leslie-Hughes 47 Peter Meerwald-Stadler 53 Seong-ho Cho 79 * Fix crash with the "pacmd play-file" command when reads from the disk aren't frame-aligned 80 * Fix module-rtp-recv sometimes thinking it's receiving an Opus stream when it's not [all …]
|
| /third_party/mesa3d/docs/relnotes/ |
| D | 24.0.2.rst | 1 Mesa 24.0.2 Release Notes / 2024-02-28 18 --------------- 22 94e28a8edad06d8ed2b83eb53f253b9eb5aa62c3080f939702e1b3039b56c9e8 mesa-24.0.2.tar.xz 26 ------------ 28 - None 32 --------- 34 - KHR-Single-GL46.arrays_of_arrays_gl.AtomicUsage fails on MTL 35 - GTF-GL46.gtf42.GL3Tests.texture_storage.texture_storage_texture_as_framebuffer_attachment fails o… 36 - [intel][anv][build][regression] - genX_grl.h:27:10: fatal error: grl/grl_cl_kernel.h: No such fil… 37 - RX 6600 VDPAU not recognizing HEVC_MAIN_10 correctly [all …]
|
| D | 23.1.0.rst | 1 Mesa 23.1.0 Release Notes / 2023-05-10 20 --------------- 24 a9dde3c76571c4806245a05bda1cceee347c3267127e9e549e4f4e225d92e992 mesa-23.1.0.tar.xz 28 ------------ 30 - VK_EXT_pipeline_library_group_handles on RADV 31 - VK_EXT_image_sliced_view_of_3d on RADV/GFX10+ 32 - VK_KHR_map_memory2 on ANV and RADV 33 - fullyCoveredFragmentShaderInputVariable on RADV/GFX9+ 34 - VK_EXT_discard_rectangles version 2 on RADV 35 - VK_EXT_graphics_pipeline_library on RADV [all …]
|
| D | 23.0.1.rst | 1 Mesa 23.0.1 Release Notes / 2023-03-24 18 --------------- 22 e8e586856b55893abae9bdcdb98b41c081d909bb1faf372e6e7262307bf34adf mesa-23.0.1.tar.xz 27 ------------ 29 - None 33 --------- 35 - radv: A Plague Tale: Requiem black "flash" on 7900XTX 36 - 7900 XTX: Graphical corruption / artifacts in Cyberpunk 37 - radv: CmdCopyQueryPoolResults broken for VK_QUERY_TYPE_PRIMITIVES_GENERATED_EXT with queryCount >… 38 - radeonsi draws spurious values to depth buffer [all …]
|
| D | 19.2.0.rst | 21 ---------------- 25 b060caa2a00f856431160ff7377d0e8f58f2aa48c16ee5a9e265ebdccb10852a mesa-19.2.0.tar.xz 28 ------------ 30 - GL_ARB_post_depth_coverage on radeonsi (Navi) 31 - GL_ARB_seamless_cubemap_per_texture on etnaviv (if GPU supports 33 - GL_EXT_shader_image_load_store on radeonsi (with LLVM >= 10) 34 - GL_EXT_shader_samples_identical on iris and radeonsi (if using NIR) 35 - GL_EXT_texture_shadow_lod on i965, iris 36 - EGL_EXT_platform_device 37 - VK_AMD_buffer_marker on radv [all …]
|
| D | 24.1.0.rst | 1 Mesa 24.1.0 Release Notes / 2024-05-22 20 --------------- 24 b7eac8c79244806b1c276eeeacc329e4a5b31a370804c4b0c7cd16837783f78b mesa-24.1.0.tar.xz 28 ------------ 30 - VK_EXT_map_memory_placed on RADV, ANV and NVK 31 - VK_KHR_shader_subgroup_rotate on RADV and ANV and NVK 32 - VK_KHR_load_store_op_none on RADV, ANV, NVK and Turnip 33 - VK_KHR_line_rasterization on RADV, ANV, NVK and Turnip 34 - VK_KHR_index_type_uint8 on RADV, ANV, NVK and Turnip 35 - VK_KHR_shader_expect_assume on all Vulkan drivers [all …]
|
| D | 19.1.0.rst | 17 ---------------- 21 2a6c3af3a803389183168e449c536304cf03e0f82c4c9333077933543b9d02f3 mesa-19.1.0.tar.xz 24 ------------ 26 - GL_ARB_parallel_shader_compile on all drivers. 27 - GL_EXT_gpu_shader4 on all GL 3.1 drivers. 28 - GL_EXT_shader_image_load_formatted on radeonsi. 29 - GL_EXT_texture_buffer_object on all GL 3.1 drivers. 30 - GL_EXT_texture_compression_s3tc_srgb on Gallium drivers and i965 (ES 32 - GL_NV_compute_shader_derivatives on iris and i965. 33 - GL_KHR_parallel_shader_compile on all drivers. [all …]
|
| D | 24.0.0.rst | 1 Mesa 24.0.0 Release Notes / 2024-02-01 20 --------------- 24 dc7e8c077bc5884df95478263b34bdebb7e88e600689cb56fb07be2b8c304c36 mesa-24.0.0.tar.xz 28 ------------ 30 - VK_EXT_image_compression_control on RADV 31 - VK_EXT_device_fault on RADV 32 - OpenGL 3.3 on Asahi 33 - Geometry shaders on Asahi 34 - GL_ARB_texture_cube_map_array on Asahi 35 - GL_ARB_clip_control on Asahi [all …]
|
| D | 24.3.0.rst | 1 Mesa 24.3.0 Release Notes / 2024-11-21 20 ------------- 24 SHA256: 97813fe65028ef21b4d4e54164563059e8408d8fee3489a2323468d198bf2efc mesa-24.3.0.tar.xz 25 …821e68d7a8c37a07871d097ab17555f41a4fe716f0de7df95ad7d452b1ed57db6527838eb839ba4 mesa-24.3.0.tar.xz 29 ------------ 31 - Expose Vulkan 1.3 on v3dv, both rpi4 and rpi5 32 - VK_EXT_descriptor_buffer on nvk 33 - VK_EXT_post_depth_coverage on nvk 34 - VK_KHR_video_maintenance1 on radv 35 - VK_EXT_legacy_vertex_attributes on nvk [all …]
|
| D | 24.2.0.rst | 1 Mesa 24.2.0 Release Notes / 2024-08-14 20 --------------- 24 c02bb72cea290f78b11895a0c95c7c92394f180d7ff66d4a762ec6950a58addf mesa-24.2.0.tar.xz 28 ------------ 30 - VK_KHR_dynamic_rendering_local_read on RADV 31 - VK_EXT_legacy_vertex_attributes on lavapipe, ANV, Turnip and RADV 32 - VK_MESA_image_alignment_control on RADV 33 - VK_EXT_shader_replicated_composites on ANV, dozen, hasvk, lavapipe, nvk, RADV, and Turnip 34 - VK_KHR_maintenance5 on v3dv 35 - VK_KHR_maintenance7 on RADV [all …]
|
| D | 20.1.0.rst | 1 Mesa 20.1.0 Release Notes / 2020-05-27 21 --------------- 25 2109055d7660514fc4c1bcd861bcba9db00c026119ae222720111732dba27c83 mesa-20.1.0.tar.xz 28 ------------ 30 - GL_ARB_compute_variable_group_size on i965. 31 - GL_EXT_depth_bounds_test on Iris. 32 - GL_EXT_texture_shadow_lod on radeonsi, nvc0. 33 - GL_NV_alpha_to_coverage_dither_control on radeonsi 34 - GL_NV_copy_image on all gallium drivers. 35 - GL_NV_pixel_buffer_object on all gallium drivers, i915, i965, swrast. [all …]
|
| D | 21.3.0.rst | 1 Mesa 21.3.0 Release Notes / 2021-11-17 20 --------------- 24 a2753c09deef0ba14d35ae8a2ceff3fe5cd13698928c7bb62c2ec8736eb09ce1 mesa-21.3.0.tar.xz 28 ------------ 30 - VK_EXT_color_write_enable on lavapipe 31 - GL_ARB_texture_filter_anisotropic in llvmpipe 32 - Anisotropic texture filtering in lavapipe 33 - VK_EXT_shader_atomic_float2 on Intel and RADV. 34 - VK_EXT_vertex_input_dynamic_state on RADV. 35 - VK_KHR_timeline_semaphore on lavapipe [all …]
|
| /third_party/mesa3d/docs/ |
| D | submittingpatches.rst | 7 ---------------- 9 - Patches should not mix code changes with code formatting changes 11 - Code patches should follow Mesa :doc:`coding 13 - Whenever possible, patches should only affect individual Mesa/Gallium 15 - Patches should never introduce build breaks and should be bisectable 17 - Patches should be properly :ref:`formatted <formatting>`. 18 - Patches should be sufficiently :ref:`tested <testing>` before 20 - Patches should be :ref:`submitted <submit>` via a merge request for 26 ---------------- 28 - Lines should be limited to 75 characters or less so that Git logs [all …]
|
| /third_party/skia/third_party/externals/freetype/docs/oldlogs/ |
| D | ChangeLog.210 | 1 2021-07-18 Werner Lemberg <wl@gnu.org> 7 Tag sources with `VER-2-11-0'. 15 builds/wince/vc2005-ce/index.html, 16 builds/wince/vc2008-ce/index.html, docs/freetype-config.1: 26 * builds/toplevel.mk (dist): Ignore more git-related files. 28 2021-07-17 David Turner <david@freetype.org> 32 The code assumed that if `__SSE2__` is defined, then 64-bit integer 37 64-bit integer types are not available. 41 2021-07-16 Alex Richardson <Alexander.Richardson@cl.cam.ac.uk> 45 * tests/issue-1063/main.c (main): I am building with a build [all …]
|
12