Home
last modified time | relevance | path

Searched +full:debian +full:- +full:build +full:- +full:testing (Results 1 – 25 of 183) sorted by relevance

12345678

/external/mesa3d/.gitlab-ci/test/
Dgitlab-ci.yml5 GIT_STRATEGY: none # testing doesn't build anything from source
7 - !reference [default, before_script]
8 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
9 - rm -rf install
10 - tar -xf artifacts/install.tar
11 - section_start ldd_section "Checking ldd on driver build"
12 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
13 - section_end ldd_section
18 - results/
20 - !reference [.never-post-merge-rules, rules]
[all …]
/external/mesa3d/.gitlab-ci/build/
Dgitlab-ci.yml2 .build-common:
3 extends: .container+build-rules
6 # Build jobs don't take more than 1-3 minutes. 5-8 min max on a fresh runner
18 - _build/meson-logs/*.txt
19 - _build/meson-logs/strace
20 - shader-db
21 - artifacts
24 .build-linux:
25 extends: .build-common
32 - !reference [default, before_script]
[all …]
/external/sg3_utils/
DMakefile.am35 debian/changelog \
36 debian/compat \
37 debian/control \
38 debian/copyright \
39 debian/docs \
40 debian/libsgutils2-2.install \
41 debian/libsgutils2-dev.install \
42 debian/README.debian4 \
43 debian/rules \
44 debian/sg3-utils.examples \
[all …]
DMakefile.in4 # Copyright (C) 1994-2021 Free Software Foundation, Inc.
18 if test -z '$(MAKELEVEL)'; then \
20 elif test -n '$(MAKE_HOST)'; then \
22 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
29 case $${target_option-} in \
32 "target option '$${target_option-}' specified" >&2; \
55 *=*|--*) continue;; \
56 -*I) strip_trailopt 'I'; skip_next=yes;; \
57 -*I?*) strip_trailopt 'I';; \
58 -*O) strip_trailopt 'O'; skip_next=yes;; \
[all …]
/external/ltp/.github/workflows/
Dci.yml1 # Copyright (c) 2021-2023 Petr Vorel <pvorel@suse.cz>
11 runs-on: ubuntu-latest
14 fail-fast: false
17 # 32bit build
18 - container: "debian:stable"
24 - container: "debian:stable"
27 CC: powerpc64le-linux-gnu-gcc
30 VARIANT: cross-compile
32 - container: "debian:stable"
35 CC: aarch64-linux-gnu-gcc
[all …]
/external/virglrenderer/perf-testing/Docker/
DDockerfile2 # Use of this source code is governed by a BSD-style license that can be
5 FROM debian:bullseye
7 docker run --privileged -v /dev/log:/dev/log -v <path to crosvm>:/platform/crosvm:ro <crosvm base i…
13 RUN apt-get update && \
14 apt-get install -y --no-install-recommends ca-certificates gnupg wget && \
15 echo 'deb-src https://deb.debian.org/debian bullseye main' >> /etc/apt/sources.list && \
17 apt-get update && \
18 apt-get build-dep -y mesa && \
19 apt-get install -y --no-install-recommends ca-certificates \
20 python3-setuptools \
[all …]
/external/mesa3d/.gitlab-ci/lava/
Dlava-gitlab-ci.yml2 …REGISTRY_IMAGE}/alpine/x86_64_lava_ssh_client:${ALPINE_X86_64_LAVA_SSH_TAG}--${MESA_TEMPLATES_COMM…
5 .lava-test:
9 GIT_STRATEGY: none # testing doesn't build anything from source
10 FDO_CI_CONCURRENT: 6 # should be replaced by per-machine definitions
12 FDO_HTTP_CACHE_URI: "http://caching-proxy/cache/?uri="
13 # base system generated by the container build job, shared between many pipelines
14 BASE_SYSTEM_HOST_PREFIX: "${S3_HOST}/mesa-lava"
17 # per-job build artifacts
18 JOB_ROOTFS_OVERLAY_PATH: "${JOB_ARTIFACTS_BASE}/job-rootfs-overlay.tar.gz"
20 S3_ARTIFACT_NAME: "mesa-${ARCH}-default-debugoptimized"
[all …]
/external/crosvm/docs/book/src/building_crosvm/
Dlinux.md3 This page describes how to build and develop crosvm on linux. If you are targeting ChromeOS, please
19 git submodule update --init
30 Crosvm development best works on Debian derivatives. We provide a script to install the necessary
31 packages on Debian, Ubuntu or gLinux:
34 ./tools/install-deps
38 [Using the development container](#using-the-development-container).
42 We provide a Debian container with the required packages installed. With
43 [Podman](https://podman.io/getting-started/installation) or
44 [Docker](https://docs.docker.com/get-docker/) installed, it can be started with:
56 ./tools/dev_container cargo build
[all …]
/external/crosvm/docs/book/src/running_crosvm/
Dcustom_kernel_rootfs.md3 This document explains how to build a custom kernel and use debootstrap to build a rootfs for
8 ### Build a kernel
11 to build. You can use any mainline kernel though as long as it's configured for para-virtualized
18 git clone --depth 1 -b chromeos-6.6 https://chromium.googlesource.com/chromiumos/third_party/kernel
21 Either way that you get the kernel, the next steps are to configure and build the bzImage:
25 CHROMEOS_KERNEL_FAMILY=termina ./chromeos/scripts/prepareconfig container-vm-x86_64
27 make -j$(nproc) bzImage
30 This kernel does not build any modules, nor does it support loading them, so there is no need to
33 ### Build a rootfs disk
37 enough for your purposes. To get you started, a Debian rootfs can be created with [debootstrap].
[all …]
/external/libbpf/ci/managers/
Ddebian.sh3 PHASES=(${@:-SETUP RUN RUN_ASAN CLEANUP})
4 DEBIAN_RELEASE="${DEBIAN_RELEASE:-testing}"
5 CONT_NAME="${CONT_NAME:-libbpf-debian-$DEBIAN_RELEASE}"
6 ENV_VARS="${ENV_VARS:-}"
7 DOCKER_RUN="${DOCKER_RUN:-docker run}"
8 REPO_ROOT="${REPO_ROOT:-$PWD}"
14 echo -e "\033[33;1m$1\033[0m"
18 echo -e "\033[31;1m$1\033[0m"
25 set -eu
33 info "Using Debian $DEBIAN_RELEASE"
[all …]
/external/mesa3d/.gitlab-ci/container/
Dgitlab-ci.yml3 .incorporate-templates-commit:
5 FDO_DISTRIBUTION_TAG: "${MESA_IMAGE_TAG}--${MESA_TEMPLATES_COMMIT}"
7 .incorporate-base-tag+templates-commit:
9 …FDO_BASE_IMAGE: "${CI_REGISTRY_IMAGE}/${MESA_BASE_IMAGE}:${MESA_BASE_TAG}--${MESA_TEMPLATES_COMMIT…
10 FDO_DISTRIBUTION_TAG: "${MESA_IMAGE_TAG}--${MESA_BASE_TAG}--${MESA_TEMPLATES_COMMIT}"
12 .set-image:
14 - .incorporate-templates-commit
19 .set-image-base-tag:
21 - .set-image
22 - .incorporate-base-tag+templates-commit
[all …]
/external/selinux/
DREADME.md7 [![OSS-Fuzz Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/selinux.svg)](https:/…
16 SELinux-based system.
24 ------------
28 * Alpine Linux (https://pkgs.alpinelinux.org/package/edge/testing/x86/policycoreutils)
31 * Debian and Ubuntu (https://packages.debian.org/sid/policycoreutils)
32 * Gentoo (https://packages.gentoo.org/packages/sys-apps/policycoreutils)
34 * Yocto Project (http://git.yoctoproject.org/cgit/cgit.cgi/meta-selinux/tree/recipes-security/selin…
38 Building and testing
39 --------------------
41 Build dependencies on Fedora:
[all …]
/external/e2fsprogs/doc/RelNotes/
Dv1.35.txt4 E2fsck has a new -k option, which in conjunction with the -c options,
7 Cleaned up e2fsck's preen-mode messages during the passes 1b, 1c, and 1d.
11 (Addresses Debian Bug #232328)
20 Fix a bug in mke2fs which caused -T largefile or -T largefile4 to core
21 dump due to a division by zero error. (Addresses Debian bug #207082)
25 directory. (Addresses Debian bug #219640).
33 the filesystem will be checked. (Addresses Debian bug #205177)
36 filesystem check will be forced. (Addresses Debian bug #157194)
42 "e2fsck -c".
46 by e2fsck on big-endian machines. (Addresses Debian bug #228723)
[all …]
Dv1.43.4.txt8 Fix a bug which was causing mke2fs -d and fuse2fs to improperly handle
11 Fix a bug which could cause mke2fs -d to fail if there is an
12 zero-length file in source directory tree.
15 tune2fs. (Addresses Debian Bug: #852727)
44 Replace a test file but which had a "non-commercial use-only"
46 package which now has a 4-clause BSD license, which was making some
48 in lib/et's regression testing and was never included in any compiled
49 binary. (Addresses Debian Bug: #840733)
54 add the Finnish and Malay translation. (Addresses-Debian-Bug: #774379)
56 Update various man pages (Addresses-Debian-Bug: #852726)
[all …]
Dv1.39.txt4 Fix 32-bit cleanliness in e2fsprogs so that we can support filesystems
11 Mke2fs will now create filesystems hash trees and on-line resizing
20 resize inode for large filesystems. (Addresses Debian Bug #346580)
31 Add support for on-line resizing to resize2fs.
46 man page for more details. (Addresses Debian Bug: #150295)
49 check when the system is running on battery. (Addresses Debian Bug:
53 field is in the future, and offer to fix if so. (Addresses Debian Bug
55 since Debian's boot sequence bogusly doesn't set the time correctly
58 (Addresses Debian Bugs #343662 and #343645)
62 (Addresses Debian Bug: #355644)
[all …]
/external/pdfium/docs/
Dcode-coverage.md13 The tools used for code coverage are known to work on Ubuntu and Debian. They
14 should work correctly on newer versions of Ubuntu, Debian and related Linux
18 `llvm-cov` to be present. This is no longer true, so if you have no other need
20 Clang build tools directory by the script.
29 Before generating code coverage information, you will need to have a build
40 If you already have a build directory, you can append the coverage flag to the
55 `testing/tools/coverage/coverage_report.py` script. This script will download
56 the Clang coverage tools if needed, build any binaries that it needs, perform
62 currently at the root of your PDFium checkout, the build directory to use is
66 testing/tools/coverage/coverage_report.py
[all …]
/external/arm-trusted-firmware/docs/plat/
Dhikey.rst8 How to build
9 ------------
14 - Trusted Firmware-A:
15 `link <https://github.com/ARM-software/arm-trusted-firmware>`__
17 - OP-TEE
18 `link <https://github.com/OP-TEE/optee_os>`__
20 - edk2:
21 `link <https://github.com/96boards-hikey/edk2/tree/testing/hikey960_v2.5>`__
23 - OpenPlatformPkg:
24 `link <https://github.com/96boards-hikey/OpenPlatformPkg/tree/testing/hikey960_v1.3.4>`__
[all …]
/external/trusty/arm-trusted-firmware/docs/plat/
Dhikey.rst8 How to build
9 ------------
14 - Trusted Firmware-A:
15 `link <https://github.com/ARM-software/arm-trusted-firmware>`__
17 - OP-TEE
18 `link <https://github.com/OP-TEE/optee_os>`__
20 - edk2:
21 `link <https://github.com/96boards-hikey/edk2/tree/testing/hikey960_v2.5>`__
23 - OpenPlatformPkg:
24 `link <https://github.com/96boards-hikey/OpenPlatformPkg/tree/testing/hikey960_v1.3.4>`__
[all …]
/external/mesa3d/docs/
Dteflon.rst6 .. list-table:: Supported acceleration hardware
7 :header-rows: 1
9 * - Gallium driver
10 - NPU supported
11 - Hardware tested
12 * - Etnaviv
13 - ``VeriSilicon VIPNano-QI.7120``
14 - ``Amlogic A311D on Libre Computer AML-A311D-CC Alta and Khadas VIM3``
16 .. list-table:: Tested models
17 :header-rows: 1
[all …]
/external/libdav1d/
D.gitlab-ci.yml2 - style
3 - build
4 - test
6 .debian-amd64-common:
7 image: registry.videolan.org/dav1d-debian-unstable:20240406142551
8 stage: build
10 - docker
11 - amd64
13 .debian-amd64-minimum:
14 image: registry.videolan.org/dav1d-debian-minimum:20240406142551
[all …]
/external/libconfig/
DChangeLog2 ----- version 1.7.3 ------
4 2021-06-19 Mark Lindner <markl@avalon>
6 * lib/libconfig.c - Fixed double-free of config->filenames;
8 NULL instead of the passed-in setting if the specified path was not
10 * configure.ac, lib/Makefile.am - bump version numbers
12 2021-04-28 Mark Lindner <markl@avalon>
14 * lib/CMakeLists.txt - misc. fixes
16 2021-04-22 Mark Lindner <markl@avalon>
18 * Makefile.am, configure.ac - Added --disable-tests configure option
20 2021-01-09 Mark Lindner <markl@avalon>
[all …]
/external/mesa3d/docs/ci/
Dindex.rst5 ---------
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 …]
/external/cronet/third_party/quic_trace/src/
DREADME.md8 The primary focus of this format is debugging congestion-control related
9 issues, but other transport aspects (e.g. flow control) and transport-related
19 ## OpenGL-based renderer
23 1. A simple gnuplot-based trace renderer.
24 1. A fully featured OpenGL-based renderer.
26 The OpenGL-based is the current preferred way of rendering traces. It supports
28 required. Most of its dependencies are shipped using Bazel build files, but for
33 ### Build instructions
37 1. Install SDL2 with headers (`libsdl2-dev` on Debian and related systems).
38 1. Install OpenGL headers (on Debian, `libsdl2-dev` pulls those in).
[all …]
/external/virglrenderer/
D.gitlab-ci.yml3 MESA_TEMPLATES_COMMIT: &ci-templates-commit d5aa3941aa03c2f716595116354fb81eb8012acb
10 # at least the 'debian-testing' job in 'Build-x86_64' stage completed.
12 # Pick a pipeline on https://gitlab.freedesktop.org/mesa/mesa/-/pipelines/
18 # per-pipeline artifact storage on MinIO
20 # per-job artifact storage on MinIO
23 PIGLIT_REPLAY_REFERENCE_IMAGES_BASE: "${STORAGE_HOST}/mesa-tracie-results/${FDO_UPSTREAM_REPO}"
27 - project: 'freedesktop/ci-templates'
30 - '/templates/ci-fairy.yml'
31 - project: 'freedesktop/ci-templates'
32 ref: *ci-templates-commit
[all …]
/external/crosvm/tools/impl/dev_container/
DDockerfile2 # Use of this source code is governed by a BSD-style license that can be
7 # Provides all dependencies specified in install-deps with some additonal
10 # Build catapult dashboard upload tool in a builder container
15 RUN go build
17 FROM docker.io/debian:testing-slim
28 RUN mkdir -p /scratch/cargo_target \
36 RUN rm -f /etc/apt/apt.conf.d/docker-clean; echo 'Binary::apt::APT::Keep-Downloaded-Packages "true"…
38 # Add foreign architectures for cross-compilation.
39 RUN dpkg --add-architecture arm64 \
40 && dpkg --add-architecture armhf
[all …]

12345678