Searched +full:ubuntu +full:- +full:cmake +full:- +full:tests (Results 1 – 25 of 92) sorted by relevance
1234
| /external/angle/third_party/vulkan-deps/vulkan-headers/src/.github/workflows/ |
| D | ci.yml | 1 # Copyright 2022-2023 LunarG, Inc. 3 # SPDX-License-Identifier: Apache-2.0 11 - main 20 ubuntu-cmake-install: 21 runs-on: ubuntu-latest 23 - uses: actions/checkout@v3 24 - uses: lukka/get-cmake@latest 27 - name: Configure Vulkan-Headers 28 run: cmake -S . -B build 29 - name: Install Vulkan-Headers [all …]
|
| /external/angle/third_party/vulkan-deps/spirv-headers/src/.github/workflows/ |
| D | presubmit.yml | 10 runs-on: ${{ matrix.os }} 13 os: [ubuntu-latest, macos-latest, windows-latest] 15 - uses: actions/checkout@v3 16 - name: Install Ubuntu packages 17 if: matrix.os == 'ubuntu-latest' 18 run: sudo apt install -y dos2unix 19 - name: Install macOS packages 20 if: matrix.os == 'macos-latest' 22 - name: Build 26 cmake -DCMAKE_INSTALL_PREFIX=install .. [all …]
|
| /external/python/pybind11/.github/workflows/ |
| D | ci.yml | 8 - master 9 - stable 10 - v* 13 # This is the "main" test suite, which tests a large number of different 17 fail-fast: false 19 runs-on: [ubuntu-latest, windows-latest, macos-latest] 21 - 2.7 22 - 3.5 23 - 3.6 24 - 3.9 [all …]
|
| D | configure.yml | 8 - master 9 - stable 10 - v* 13 # This tests various versions of CMake in various combinations, to make sure 15 cmake: 17 fail-fast: false 19 runs-on: [ubuntu-latest, macos-latest, windows-latest] 21 cmake: [3.18] 24 - runs-on: ubuntu-latest 26 cmake: 3.4 [all …]
|
| /external/flatbuffers/.github/workflows/ |
| D | build.yml | 2 permissions: read-all 5 # For manual tests. 9 - "*" # new tag version, like `0.8.4` or else 11 - master 14 - master 17 build-linux: 21 digests-gcc: ${{ steps.hash-gcc.outputs.hashes }} 22 digests-clang: ${{ steps.hash-clang.outputs.hashes }} 24 runs-on: ubuntu-latest 27 cxx: [g++-10, clang++-12] [all …]
|
| /external/lz4/.github/workflows/ |
| D | ci.yml | 6 # - gcc 7 # - clang 10 # - All test cases which described as 'fail' must be fixed and replaced with 'true'. 11 # - gcc-11 (x32, x86) : "../lib/lz4hc.c:148: LZ4HC_countBack: Assertion `(size_t)(match - mMin) <… 12 # - all clangs (x32, x86) : "../lib/lz4hc.c:282: int LZ4HC_InsertAndGetWiderMatch(...): Assertion… 20 lz4-c-compilers: 23 fail-fast: false # 'false' means Don't stop matrix workflows even if some matrix failed. 28 …# pkgs : apt-get package names. It can include multiple package names which are delimit… 33 # x86 : Set 'true' if compiler supports x86 (-m32). Otherwise, set 'false'. 38 …ons YAML workflow label. See https://github.com/actions/virtual-environments#available-environmen… [all …]
|
| /external/zstd/.github/workflows/ |
| D | dev-short-tests.yml | 1 name: dev-short-tests 2 # Faster tests: mostly build tests, along with some other 3 # misc tests 6 group: fast-${{ github.ref }} 7 cancel-in-progress: true 14 linux-kernel: 15 runs-on: ubuntu-latest 17 - uses: actions/checkout@v2 18 - name: linux kernel, library + build + test 19 …run: make -C contrib/linux-kernel test CFLAGS="-Werror -Wunused-const-variable -Wunused-but-set-va… [all …]
|
| D | dev-long-tests.yml | 1 name: dev-long-tests 2 # Tests longer than 10mn 5 group: long-${{ github.ref }} 6 cancel-in-progress: true 13 make-all: 14 runs-on: ubuntu-latest 16 - uses: actions/checkout@v2 17 - name: make all 21 make-test: 22 runs-on: ubuntu-latest [all …]
|
| /external/XNNPACK/.github/workflows/ |
| D | build.yml | 1 name: Build using CMake 4 group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} 5 cancel-in-progress: true 7 cmake-linux-local: 8 runs-on: ubuntu-latest 9 timeout-minutes: 40 11 - uses: actions/checkout@v2 12 - name: Update apt 14 - name: Install ninja 15 run: sudo apt install ninja-build [all …]
|
| /external/google-fruit/ |
| D | CONTRIBUTING.md | 7 [here](https://github.com/google/fruit/wiki/install#building-fruit-manually). 15 Fruit supports two build systems: CMake (configured in `CMakeLists.txt` files) and 20 `CMakeLists.txt` and `BUILD` files, to make sure that Fruit keeps building (and passing its tests) … 24 …nds to build a development version of Fruit using CMake (with all assertions enabled) and run the … 28 mkdir build-debug 29 cd build-debug 30 cmake .. -DCMAKE_BUILD_TYPE=Debug -DFRUIT_ENABLE_CLANG_TIDY=TRUE -DCMAKE_CXX_FLAGS="-Werror -DFRUIT… 31 make -j 16 32 cd tests 33 py.test-3 -n auto [all …]
|
| /external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/ |
| D | cmake.yml | 1 name: CI CMake 4 ci-cmake: 6 runs-on: ${{ matrix.os }} 8 fail-fast: false 11 - name: Ubuntu 18.04 GCC 12 os: ubuntu-18.04 14 cxx-compiler: g++ 16 - name: Ubuntu GCC ASAN 17 os: ubuntu-latest 19 cxx-compiler: g++ [all …]
|
| /external/parameter-framework/upstream/ |
| D | .travis.yml | 2 - linux 3 - osx 8 # https://docs.travis-ci.com/user/languages/objective-c/#Supported-OS-X-iOS-SDK-versions 15 - PREFIX=$HOME/prefix 16 - MY_CMAKE_OPTIONS="-DCMAKE_PREFIX_PATH=$PREFIX -DCMAKE_INSTALL_PREFIX=$HOME/install" 17 - OSX_CMAKE_OPTIONS="-DBUILD_TESTING=OFF -DPYTHON_BINDINGS=OFF -DCLIENT_SIMULATOR=OFF" 18 - CTEST_OUTPUT_ON_FAILURE=1 19 - LINUX=false 20 - OSX=false 23 - gcc [all …]
|
| /external/ot-br-posix/.github/workflows/ |
| D | build.yml | 33 branches-ignore: 34 - 'dependabot/**' 37 - 'main' 41 cancel-previous-runs: 42 runs-on: ubuntu-20.04 44 - uses: rokroskar/workflow-run-cleanup-action@master 50 runs-on: ubuntu-20.04 52 - uses: actions/checkout@v2 53 - name: Bootstrap 54 run: BUILD_TARGET=pretty-check tests/scripts/bootstrap.sh [all …]
|
| /external/openthread/.github/workflows/ |
| D | simulation-1.1.yml | 35 cancel-previous-runs: 36 runs-on: ubuntu-20.04 38 - uses: rokroskar/workflow-run-cleanup-action@master 44 runs-on: ubuntu-20.04 52 - uses: actions/checkout@v2 55 - name: Bootstrap 57 sudo rm /etc/apt/sources.list.d/* && sudo apt-get update 58 … sudo apt-get --no-install-recommends install -y llvm-runtime python3-setuptools python3-wheel 59 python3 -m pip install -r tests/scripts/thread-cert/requirements.txt 60 - name: Run [all …]
|
| /external/tensorflow/tensorflow/lite/g3doc/guide/ |
| D | build_cmake.md | 1 # Build TensorFlow Lite with CMake 4 [CMake](https://cmake.org/) tool. 6 The following instructions have been tested on Ubuntu 16.04.3 64-bit PC (AMD64) 12 ### Step 1. Install CMake tool 14 It requires CMake 3.16 or higher. On Ubuntu, you can simply run the following 18 sudo apt-get install cmake 22 [the official cmake installation guide](https://cmake.org/install/) 33 ### Step 3. Create CMake build directory 40 ### Step 4. Run CMake tool with configurations 48 cmake ../tensorflow_src/tensorflow/lite [all …]
|
| /external/armnn/ |
| D | BuildGuideAndroidNDK.md | 3 - [Introduction](#introduction) 4 - [Initial Setup](#initial-setup) 5 - [Download the Android NDK and make a standalone toolchain](#download-the-android-ndk-and-make-a-s… 6 - [Install Cmake](#install-cmake) 7 - [Build Flatbuffers](#build-flatbuffers) 8 - [Download Arm NN](#download-arm-nn) 9 - [Get And Build TFLite](#get-and-build-tflite) 10 - [Build Arm Compute Library](#build-arm-compute-library) 11 - [Build Arm NN](#build-arm-nn) 12 - [Build Standalone Sample Dynamic Backend](#build-standalone-sample-dynamic-backend) [all …]
|
| /external/rust/crates/libz-sys/src/zlib-ng/test/ |
| D | pkgcheck.sh | 5 Usage: sh test/pkgcheck.sh [--zlib-compat] 8 If --zlib-compat, tests with zlib compatible builds. 12 $ sudo apt install ninja-build diffoscope gcc-multilib 13 $ export CMAKE_ARGS="-DCMAKE_C_FLAGS=-m32" CFLAGS=-m32 LDFLAGS=-m32 16 To cross-build, install the appropriate qemu and gcc packages, 17 and set the environment variables used by configure or cmake. 18 On Ubuntu, for example (values taken from .github/workflows/pkgconf.yml): 21 $ sudo apt install ninja-build diffoscope qemu gcc-arm-linux-gnueabihf libc6-dev-armhf-cross 22 $ export CHOST=arm-linux-gnueabihf 23 $ export CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-arm.cmake -DCMAKE_C_COMPILER_TARGET=${C… [all …]
|
| /external/rust/crates/grpcio/.github/workflows/ |
| D | ci.yml | 7 - master 9 - cron: '0 22 * * *' 13 …# Some of the bindgen tests generate "deref-nullptr" warnings, see https://github.com/rust-lang/ru… 14 RUSTFLAGS: "--deny=warnings --allow deref-nullptr" 18 Linux-Format: 19 name: Linux-Format 20 runs-on: ubuntu-latest 22 - uses: actions/checkout@v2 23 - run: sudo apt-get install -y clang-tidy-9 24 … - run: sudo update-alternatives --install /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-9 100 [all …]
|
| /external/cronet/buildtools/third_party/libc++/trunk/utils/ci/ |
| D | Dockerfile | 1 #===----------------------------------------------------------------------===## 5 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 #===----------------------------------------------------------------------===## 15 # $ docker run --env-file <secrets> -it $(docker build -q libcxx/utils/ci) 23 # build bot, see the `run-buildbot-container` script located in this directory. 25 # A pre-built version of this image is maintained on DockerHub as ldionne/libcxx-builder. 26 # To update the image, rebuild it and push it to ldionne/libcxx-builder (which 29 # $ docker build -t ldionne/libcxx-builder libcxx/utils/ci 30 # $ docker push ldionne/libcxx-builder 33 FROM ubuntu:jammy [all …]
|
| /external/curl/ |
| D | .azure-pipelines.yml | 21 # SPDX-License-Identifier: curl 32 - 'master' 33 - '*/ci' 36 - '.circleci/*' 37 - '.cirrus.yml' 38 - '.github/*' 39 - 'appveyor.yml' 40 - 'packages/*' 41 - 'plan9/*' 46 - 'master' [all …]
|
| /external/catch2/docs/ |
| D | cmake-integration.md | 2 # CMake integration 5 [CMake target](#cmake-target)<br> 6 [Automatic test registration](#automatic-test-registration)<br> 7 [CMake project options](#cmake-project-options)<br> 8 [Installing Catch2 from git repository](#installing-catch2-from-git-repository)<br> 10 Because we use CMake to build Catch2, we also provide a couple of 13 1) Catch2 exports a (namespaced) CMake target 14 2) Catch2's repository contains CMake scripts for automatic registration 17 ## CMake target 19 Catch2's CMake build exports an interface target `Catch2::Catch2`. Linking [all …]
|
| /external/vulkan-validation-layers/ |
| D | BUILD.md | 8 1. [Contributing](#contributing-to-the-repository) 9 1. [Repository Content](#repository-content) 10 1. [Repository Set-Up](#repository-set-up) 11 1. [Windows Build](#building-on-windows) 12 1. [Linux Build](#building-on-linux) 13 1. [Android Build](#building-on-android) 14 1. [MacOS build](#building-on-macos) 26 validation layers and their tests. 33 - *install_dir*`/lib` : The Vulkan validation layer libraries 34 - *install_dir*`/share/vulkan/explicit_layer.d` : The Vulkan validation layer [all …]
|
| /external/zstd/ |
| D | Makefile | 2 # Copyright (c) 2015-2021, Yann Collet, Facebook, Inc. 5 # This source code is licensed under both the BSD-style license (found in the 8 # You may select, at your option, one of the above-listed licenses. 18 TESTDIR = tests 24 # When cross-compiling from linux to windows, you might 28 # Note: mingw-w64 build from linux to windows does not 29 # fail on other tested distros (ubuntu, debian) even 40 ## default: Build lib-release and zstd-release 42 default: lib-release zstd-release 53 $(Q)$(MAKE) -C $(PRGDIR) all [all …]
|
| /external/gflags/ |
| D | INSTALL.md | 8 For example on Debian/Ubuntu Linux, gflags can be installed using the 11 sudo apt-get install libgflags-dev 14 Compiling the source code with CMake 17 The build system of gflags is since version 2.1 based on [CMake](http://cmake.org). 22 3. Run CMake to configure the build tree. 27 On Unix-like systems with GNU Make as build tool, these build steps can be 32 $ tar xzf gflags-$version-source.tar.gz 33 $ cd gflags-$version 37 - Press 'c' to configure the build system and 'e' to ignore warnings. 38 - Set CMAKE_INSTALL_PREFIX and other CMake variables and options. [all …]
|
| /external/OpenCL-CTS/ |
| D | README.md | 9 GitHub Actions CI builds against Ubuntu 20.04, Windows-latest, and 10 macos-latest. 12 Compiling the CTS requires the following CMake configuration options to be set: 15 [OpenCL-Headers](https://github.com/KhronosGroup/OpenCL-Headers). 19 It is advised that the [OpenCL ICD-Loader](https://github.com/KhronosGroup/OpenCL-ICD-Loader) 29 git clone https://github.com/KhronosGroup/OpenCL-CTS.git 30 git clone https://github.com/KhronosGroup/OpenCL-Headers.git 31 git clone https://github.com/KhronosGroup/OpenCL-ICD-Loader.git 33 mkdir OpenCL-ICD-Loader/build 34 cmake -S OpenCL-ICD-Loader -B OpenCL-ICD-Loader/build \ [all …]
|
1234