Searched +full:apt +full:- +full:get (Results 1 – 25 of 265) sorted by relevance
1234567891011
| /third_party/fsverity-utils/.github/workflows/ |
| D | ci.yml | 1 # SPDX-License-Identifier: MIT 4 # Use of this source code is governed by an MIT-style 12 static-linking-test: 14 runs-on: ubuntu-latest 16 - uses: actions/checkout@v4 17 - run: scripts/run-tests.sh static_linking 19 dynamic-linking-test: 21 runs-on: ubuntu-latest 23 - uses: actions/checkout@v4 24 - run: scripts/run-tests.sh dynamic_linking [all …]
|
| /third_party/lz4/.circleci/images/primary/ |
| D | Dockerfile | 1 FROM circleci/buildpack-deps:bionic 3 RUN sudo apt-get -y -qq update 4 RUN sudo apt-get -y install software-properties-common 5 RUN sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test 6 RUN sudo apt-get -y install cmake 7 RUN sudo apt-get -y install qemu-system-ppc qemu-user-static qemu-system-arm 8 RUN sudo apt-get -y install libc6-dev-armel-cross libc6-dev-arm64-cross libc6-dev-i386 9 RUN sudo apt-get -y install clang clang-tools 10 RUN sudo apt-get -y install gcc-5 gcc-5-multilib gcc-6 11 RUN sudo apt-get -y install valgrind [all …]
|
| /third_party/mindspore/mindspore-src/source/scripts/install/ |
| D | ubuntu-cpu-source.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 20 # - change deb source to huaweicloud mirror 21 # - install compile dependencies via apt like cmake, gcc 22 # - install python3 & pip3 via apt and set it to default 23 # - install LLVM if LLVM is set to on. 26 # - PYTHON_VERSION: python version to install. [3.7(default), 3.8, 3.9] 27 # - LLVM: whether to install optional dependency LLVM for graph kernel fusion. [on, off(default)] 30 # Run script like `bash ./ubuntu-cpu-source.sh`. 31 # To set augments, run it as `PYTHON_VERSION=3.9 LLVM=on bash ./ubuntu-cpu-source.sh`. 33 set -e [all …]
|
| D | purge-cuda.sh | 2 sudo apt-get --purge remove nvidia-* 3 sudo apt-get --purge remove cuda-* 4 sudo apt-get --purge remove cudnn-* 5 sudo apt-get --purge remove libnvidia-* 6 sudo apt-get --purge remove libcuda-* 7 sudo apt-get --purge remove libcudnn-* 8 sudo apt-get autoremove
|
| D | ubuntu-gpu-source.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 20 # - change deb source to huaweicloud mirror 21 # - install compile dependencies via apt like cmake, gcc 22 # - install python3 & pip3 via apt and set it to default 23 # - install CUDA by run file and cudnn via apt. 24 # - compile and install Open MPI if OPENMPI is set to on. 25 # - install LLVM if LLVM is set to on. 28 # - PYTHON_VERSION: python version to install. [3.7(default), 3.8, 3.9] 29 # - CUDA_VERSION: CUDA version to install. [10.1, 11.1 11.6(default)] 30 # - OPENMPI: whether to install optional package Open MPI for distributed training. [on, off(defa… [all …]
|
| D | ubuntu-gpu-pip.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 20 # - change deb source to huaweicloud mirror 21 # - install mindspore dependencies via apt like gcc, libgmp 22 # - install python3 & pip3 via apt and set it to default 23 # - install CUDA by run file and cudnn via apt. 24 # - install mindspore-cpu within new installed python by pip 25 # - compile and install Open MPI if OPENMPI is set to on. 28 # - PYTHON_VERSION: python version to install. [3.7(default), 3.8, 3.9] 29 # - MINDSPORE_VERSION: mindspore version to install, >=1.6.0, required 30 # - CUDA_VERSION: CUDA version to install. [10.1, 11.1 11.6(default)] [all …]
|
| /third_party/mesa3d/.gitlab-ci/container/debian/ |
| D | x86_test-base.sh | 3 set -e 4 set -o xtrace 8 apt-get install -y ca-certificates gnupg2 software-properties-common 10 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list 16 python3-dev \ 17 python3-pip \ 18 python3-setuptools \ 19 python3-wheel \ 23 apt-key add .gitlab-ci/container/debian/llvm-snapshot.gpg.key 24 add-apt-repository "deb https://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-13 main" [all …]
|
| D | x86_build-base.sh | 3 set -e 4 set -o xtrace 8 apt-get install -y ca-certificates gnupg2 software-properties-common 11 apt-key add .gitlab-ci/container/debian/llvm-snapshot.gpg.key 12 add-apt-repository "deb https://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-13 main" 14 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list 19 python3-pip \ 20 python3-setuptools \ 23 apt-get update 25 apt-get install -y --no-remove \ [all …]
|
| D | arm_build.sh | 3 set -e 4 set -o xtrace 6 apt-get -y install ca-certificates 7 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list 8 echo 'deb https://deb.debian.org/debian buster main' >/etc/apt/sources.list.d/buster.list 9 apt-get update 11 apt-get -y install \ 25 glslang-tools \ 28 libdrm-dev \ 29 libelf-dev \ [all …]
|
| /third_party/skia/infra/bots/assets/mesa_intel_driver_linux/mesa-driver-builder/ |
| D | Dockerfile | 5 # Enabling backports gives us access to clang-6 and makes it more likely that 6 # 'apt-get build-dep' will install the correct dependencies. 13 # Hosts can install this by adding the stretch-backports debian source (see next RUN) 14 # and then performing `sudo apt-get update && sudo apt-get install libdrm2=2.4.95-1~bpo9+1` 15 RUN echo "deb-src http://deb.debian.org/debian buster main" >> /etc/apt/sources.list && \ 16 echo "deb-src http://deb.debian.org/debian buster-updates main" >> /etc/apt/sources.list && \ 17 apt-get update && apt-get upgrade -y && \ 18 apt-get install -y wget clang-6.0 && \ 19 apt-get build-dep -y mesa && \ 20 rm -rf /var/lib/apt/lists/* [all …]
|
| /third_party/libcoap/build-env/ |
| D | Dockerfile.develop | 1 FROM obgm/libcoap:build-env 3 RUN apt-get update && apt-get install -y cmake git g++ 4 RUN apt-get clean 10 RUN ./autogen.sh --clean && ./autogen.sh 11 RUN ./configure --disable-documentation --enable-tests --enable-examples --with-openssl && make ins… 14 RUN git clone --depth 1 https://github.com/cabo/cn-cbor.git && cd cn-cbor && ./build.sh all doc ins… 17 FROM debian:testing-slim 19 RUN apt-get update && apt-get install -y autoconf automake gcc g++ gdb libtool libtool-bin make \ 20 pkg-config libssl-dev libgnutls28-dev libmbedtls-dev 21 RUN apt-get install -y iproute2 lsof net-tools inetutils-ping netcat-openbsd less vim [all …]
|
| /third_party/mesa3d/.gitlab-ci/container/ |
| D | cross_build.sh | 3 set -e 4 set -o xtrace 12 dpkg --add-architecture $arch 13 apt-get update 15 apt-get install -y --no-remove \ 17 crossbuild-essential-$arch \ 18 libelf-dev:$arch \ 19 libexpat1-dev:$arch \ 20 libpciaccess-dev:$arch \ 22 libvulkan-dev:$arch \ [all …]
|
| D | create-rootfs.sh | 3 set -ex 6 ARCH_PACKAGES="firmware-qcom-media 7 firmware-linux-nonfree 10 libglu1-mesa 11 libvulkan-dev 15 apt-get -y install --no-install-recommends wget gnupg2 software-properties-common 16 apt-key add /llvm-snapshot.gpg.key 17 add-apt-repository "deb https://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-13 main" 19 ARCH_PACKAGES="firmware-amd-graphics 20 inetutils-syslogd [all …]
|
| /third_party/libwebsockets/scripts/ |
| D | travis_install.sh | 7 sudo apt-get update -qq 9 if [ "$LWS_METHOD" == "lwsws" -o "$LWS_METHOD" == "lwsws2" ]; 11 …sudo apt-get install -y -qq realpath libjemalloc1 libev4 libuv-dev libdbus-1-dev valgrind mosquitto 12 sudo apt-get remove python-six 17 wget https://libwebsockets.org/openssl-1.1.0-trusty.tar.bz2 -O/tmp/openssl.tar.bz2 21 sudo update-ca-certificates 24 if [ "$LWS_METHOD" == "mbedtls" -o "$LWS_METHOD" == "ss+mbedtls" ]; 26 sudo apt-get install -y -qq realpath libjemalloc1 libev4 libuv-dev valgrind 27 wget https://libwebsockets.org/openssl-1.1.0-trusty.tar.bz2 -O/tmp/openssl.tar.bz2 31 sudo update-ca-certificates [all …]
|
| /third_party/benchmark/ |
| D | .travis.yml | 7 - compiler: gcc 9 apt: 11 - lcov 13 - compiler: gcc 15 apt: 17 - g++-multilib 18 - libc6:i386 20 - COMPILER=g++ 21 - C_COMPILER=gcc 22 - BUILD_TYPE=Debug [all …]
|
| /third_party/skia/infra/wasm-common/docker/karma-chrome-tests/ |
| D | Dockerfile | 2 # Inspired by https://github.com/eirslett/chrome-karma-docker 4 # Tests will be run as non-root (user skia, in fact), so /OUT should have permissions 9 RUN apt-get update && apt-get upgrade -y 11 RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_amd64.deb 12 RUN dpkg -i dumb-init_*.deb 14 ENTRYPOINT ["/usr/bin/dumb-init", "--"] 16 RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - 17 RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/s… 18 RUN apt-get update && apt-get install -y google-chrome-stable 20 #Add user so we don't have to run as root (prevents us from over-writing files in /SRC) [all …]
|
| /third_party/littlefs/.github/workflows/ |
| D | test.yml | 5 CFLAGS: -Werror 6 MAKEFLAGS: -j 11 runs-on: ubuntu-18.04 13 fail-fast: false 18 - uses: actions/checkout@v2 19 - name: install 22 sudo apt-get update -qq 23 sudo apt-get install -qq python3 python3-pip lcov 25 gcc --version 27 # setup a ram-backed disk to speed up reentrant tests [all …]
|
| /third_party/skia/infra/lottiecap/docker/lottie-web-puppeteer/ |
| D | Dockerfile | 3 # Tests will be run as non-root (user skia, in fact), so /OUT should have permissions 8 RUN apt-get update && apt-get upgrade -y 10 RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_amd64.deb 11 RUN dpkg -i dumb-init_*.deb 13 …//github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker 14 # recommends using dumb-init to "prevent zombie chrome processes" 15 ENTRYPOINT ["/usr/bin/dumb-init", "--"] 17 RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - 18 RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/s… 19 RUN apt-get update && apt-get install -y google-chrome-stable [all …]
|
| /third_party/skia/infra/gcc/Debian10/ |
| D | Dockerfile | 1 FROM debian:10-slim 3 RUN apt-get update && apt-get upgrade -y && apt-get install -y \ 4 build-essential \ 5 ca-certificates \ 6 libfontconfig-dev \ 7 libglu-dev \ 9 && rm -rf /var/lib/apt/lists/*
|
| /third_party/skia/infra/gcc/Debian10-x86/ |
| D | Dockerfile | 1 FROM debian:10-slim 3 RUN dpkg --add-architecture i386 && \ 4 apt-get update && apt-get upgrade -y && apt-get install -y \ 5 build-essential \ 6 ca-certificates \ 7 g++-multilib \ 8 libfontconfig-dev:i386 \ 9 libglu-dev:i386 \ 11 && rm -rf /var/lib/apt/lists/*
|
| /third_party/mindspore/mindspore-src/source/scripts/docker/mindspore-gpu/1.8.0/cuda11.1/ |
| D | Dockerfile | 1 FROM nvidia/cuda:11.1-cudnn8-devel-ubuntu18.04 6 ENV PYTHON_ROOT_PATH /usr/local/python-3.7.5 7 ENV OMPI_ROOT_PATH /usr/local/openmpi-4.0.3 13 RUN rm /etc/apt/sources.list.d/cuda.list && \ 14 rm /etc/apt/sources.list.d/nvidia-ml.list && \ 15 apt-key del 7fa2af80 && \ 16 DEBIAN_FRONTEND=noninteractive apt-get update && \ 17 DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends wget && \ 18 …/developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb && \ 19 dpkg -i cuda-keyring_1.0-1_all.deb && \ [all …]
|
| /third_party/mindspore/mindspore-src/source/scripts/docker/mindspore-gpu/1.10.0/cuda11.1/ |
| D | Dockerfile | 1 FROM nvidia/cuda:11.1-cudnn8-devel-ubuntu18.04 6 ENV PYTHON_ROOT_PATH /usr/local/python-3.7.5 7 ENV OMPI_ROOT_PATH /usr/local/openmpi-4.0.3 13 RUN rm /etc/apt/sources.list.d/cuda.list && \ 14 rm /etc/apt/sources.list.d/nvidia-ml.list && \ 15 apt-key del 7fa2af80 && \ 16 DEBIAN_FRONTEND=noninteractive apt-get update && \ 17 DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends wget && \ 18 …/developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb && \ 19 dpkg -i cuda-keyring_1.0-1_all.deb && \ [all …]
|
| /third_party/mindspore/mindspore-src/source/scripts/docker/mindspore-gpu/1.9.0/cuda11.1/ |
| D | Dockerfile | 1 FROM nvidia/cuda:11.1-cudnn8-devel-ubuntu18.04 6 ENV PYTHON_ROOT_PATH /usr/local/python-3.7.5 7 ENV OMPI_ROOT_PATH /usr/local/openmpi-4.0.3 13 RUN rm /etc/apt/sources.list.d/cuda.list && \ 14 rm /etc/apt/sources.list.d/nvidia-ml.list && \ 15 apt-key del 7fa2af80 && \ 16 DEBIAN_FRONTEND=noninteractive apt-get update && \ 17 DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends wget && \ 18 …/developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb && \ 19 dpkg -i cuda-keyring_1.0-1_all.deb && \ [all …]
|
| /third_party/mindspore/mindspore-src/source/scripts/docker/mindspore-gpu/1.7.0/cuda11.1/ |
| D | Dockerfile | 1 FROM nvidia/cuda:11.1-cudnn8-devel-ubuntu18.04 6 ENV PYTHON_ROOT_PATH /usr/local/python-3.7.5 7 ENV OMPI_ROOT_PATH /usr/local/openmpi-4.0.3 13 RUN rm /etc/apt/sources.list.d/cuda.list && \ 14 rm /etc/apt/sources.list.d/nvidia-ml.list && \ 15 apt-key del 7fa2af80 && \ 16 DEBIAN_FRONTEND=noninteractive apt-get update && \ 17 DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends wget && \ 18 …/developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb && \ 19 dpkg -i cuda-keyring_1.0-1_all.deb && \ [all …]
|
| /third_party/mindspore/mindspore-src/source/scripts/docker/mindspore-gpu/1.10.1/cuda10.1/ |
| D | Dockerfile | 1 FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04 6 ENV PYTHON_ROOT_PATH /usr/local/python-3.7.5 7 ENV OMPI_ROOT_PATH /usr/local/openmpi-4.0.3 13 RUN rm /etc/apt/sources.list.d/cuda.list && \ 14 apt-key del 7fa2af80 && \ 15 DEBIAN_FRONTEND=noninteractive apt-get update && \ 16 DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends wget && \ 17 …/developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb && \ 18 dpkg -i cuda-keyring_1.0-1_all.deb && \ 19 DEBIAN_FRONTEND=noninteractive apt-get update && \ [all …]
|
1234567891011