Searched +full:apt +full:- +full:add +full:- +full:repository (Results 1 – 25 of 59) sorted by relevance
123
14 MAINTAINER Flutter Developers <flutter-dev@googlegroups.com>16 RUN apt-get update -y17 RUN apt-get upgrade -y20 RUN apt-get install -y --no-install-recommends \26 apt-transport-https \27 ca-certificates \30 # Add repo for chrome stable31 RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -32 …http://dl.google.com/linux/chrome/deb/ stable main' | tee /etc/apt/sources.list.d/google-chrome.li…34 # Add repo for gcloud sdk and install it[all …]
5 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception11 set -eux15 if [ "$#" -eq 1 ]; then19 DISTRO=$(lsb_release -is)20 VERSION=$(lsb_release -sr)23 if [[ $EUID -ne 0 ]]; then28 declare -A LLVM_VERSION_PATTERNS29 LLVM_VERSION_PATTERNS[9]="-9"30 LLVM_VERSION_PATTERNS[10]="-10"31 LLVM_VERSION_PATTERNS[11]="-11"[all …]
3 set -e4 set -x10 pwd -P16 dpkg --add-architecture i38617 apt-get update18 apt-get install -y apt-utils software-properties-common apt-transport-https sudo curl wget zip unzip19 apt-get update20 apt-get dist-upgrade -y22 wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | t…23 wget -qO- https://deb.nodesource.com/setup_12.x | bash -[all …]
5 set -e # Fail on any error.6 set -x # Display commands being run.9 sudo aptitude purge -yq cmake10 wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | sudo apt-key add -11 sudo apt-add-repository 'deb https://apt.kitware.com/ubuntu/ xenial main'12 sudo aptitude update -yq13 sudo aptitude install -yq cmake14 cmake --version17 sudo add-apt-repository ppa:ubuntu-toolchain-r/test18 sudo aptitude update -yq[all …]
5 # Copyright Rene Rivera 2015-2019.10 - develop11 - master12 - feature/*15 - appveyor.yml19 - develop22 - appveyor.yml26 - stage: Test29 - job: 'Linux'31 vmImage: 'ubuntu-16.04'[all …]
11 cmake .. -DBUILD_JNI_BINDING=ON -DCMAKE_BUILD_TYPE=Release15 or install binary package from [our PPA repository](https://launchpad.net/~adamansky/+archive/ubunt…18 sudo add-apt-repository ppa:adamansky/ejdb219 sudo apt-get update20 sudo apt-get install ejdb2-java23 Then compile and run app (Linux x86-64)29 mvn exec:java -Dexec.cleanupDaemonThreads=false -Dexec.mainClass="EJDB2Example"33 the `libejdb2jni.so` library is located. For Linux systems `ejdb2-java` PPA debian package installs41 <repository>45 </repository>
2 # Adapted from https://github.com/googleapis/google-cloud-python/blob/master/.kokoro/publish-docs.sh4 set -eo pipefail12 sudo apt-get update13 sudo apt-get -y install software-properties-common14 sudo add-apt-repository universe15 sudo apt-get update16 sudo apt-get -y install unzip17 wget https://github.com/protocolbuffers/protobuf/releases/download/v3.11.2/protoc-3.11.2-linux-x86_…18 unzip protoc-3.11.2-linux-x86_64.zip bin/protoc20 python3.6 -m venv venv[all …]
1 FROM circleci/buildpack-deps:bionic3 RUN sudo apt-get -y -qq update4 RUN sudo apt-get -y install software-properties-common5 RUN sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test6 RUN sudo apt-get -y install cmake7 RUN sudo apt-get -y install qemu-system-ppc qemu-user-static qemu-system-arm8 RUN sudo apt-get -y install libc6-dev-armel-cross libc6-dev-arm64-cross libc6-dev-i3869 RUN sudo apt-get -y install clang clang-tools10 RUN sudo apt-get -y install gcc-5 gcc-5-multilib gcc-611 RUN sudo apt-get -y install valgrind[all …]
1 name: Build alsa-utils7 runs-on: ubuntu-latest11 - name: Prepare environment13 dnf -y upgrade14 dnf -y install @development-tools libtool bzip2 gettext-devel ncurses-devel16 - name: Checkout alsa-lib19 repository: alsa-project/alsa-lib21 path: alsa-lib22 - name: Configure alsa-lib24 cd alsa-lib[all …]
5 # Copyright Rene Rivera 2019-2020.10 - develop11 - master12 - feature/*16 - develop20 AZP_REPO_DIR: $(Build.Repository.LocalPath)24 AZP_REPO: $(Build.Repository.Name)29 - stage: Test32 - job: 'Linux'37 CXX: g++-9[all …]
7 # http://www.apache.org/licenses/LICENSE-2.018 RUN apt-get update && apt-get install -y \20 autotools-dev \21 build-essential \27 gcc-multilib \33 libc6-dbg \34 libc6-dev \35 libgtest-dev \40 python-dev \41 python-setuptools \[all …]
6 # Add Debian 'buster' repository, we will need it for installing newer versions of python7 RUN echo 'deb http://ftp.de.debian.org/debian buster main' >> /etc/apt/sources.list8 RUN echo 'APT::Default-Release "stretch";' | tee -a /etc/apt/apt.conf.d/00local
1 name: build-and-test8 # TODO: add 32-bit builds (g++ and clang++) for ubuntu9 # (requires g++-multilib and libc6:i386)10 # TODO: add coverage build (requires lcov)11 # TODO: add clang + libc++ builds for ubuntu14 runs-on: ${{ matrix.os }}16 fail-fast: false18 os: [ubuntu-latest, ubuntu-20.04, macos-latest]22 - displayTargetName: windows-latest-release23 os: windows-latest[all …]
1 gRPC C++ - Building from source5 …://github.com/grpc/grpc/tree/master/src/cpp#to-start-using-grpc-c) instructions for guidance on ho…7 # Pre-requisites12 $ [sudo] apt-get install build-essential autoconf libtool pkg-config17 $ [sudo] apt-get install cmake22 $ # libgflags-dev is only required if building with make (deprecated)23 $ [sudo] apt-get install libgflags-dev25 $ [sudo] apt-get install clang-5.0 libc++-dev36 $ [sudo] xcode-select --install66 - Install Visual Studio 2015 or 2017 (Visual C++ compiler will be used).[all …]
2 --- |9 # http://www.apache.org/licenses/LICENSE-2.017 FROM gcr.io/oss-fuzz-base/base-builder19 # -------------------------- WARNING --------------------------------------21 # https://github.com/google/oss-fuzz/blob/master/projects/grpc/Dockerfile23 # -------------------------------------------------------------------------26 RUN apt-get update && apt-get install -y software-properties-common python-software-properties27 RUN add-apt-repository ppa:webupd8team/java28 RUN apt-get update && apt-get -y install ${'\\'}30 build-essential ${'\\'}[all …]
7 # http://www.apache.org/licenses/LICENSE-2.015 FROM gcr.io/oss-fuzz-base/base-builder17 # -------------------------- WARNING --------------------------------------19 # https://github.com/google/oss-fuzz/blob/master/projects/grpc/Dockerfile21 # -------------------------------------------------------------------------24 RUN apt-get update && apt-get install -y software-properties-common python-software-properties25 RUN add-apt-repository ppa:webupd8team/java26 RUN apt-get update && apt-get -y install \28 build-essential \33 openjdk-8-jdk \[all …]
20 db.createQuery("@parrots/[age > :age]").setLong("age", 3).execute((docId, doc) -> {30 - Linux x6431 - MacOS36 sudo add-apt-repository ppa:adamansky/ejdb237 sudo apt-get update38 sudo apt-get install ejdb2-java42 the `libejdb2jni.so` library is located. For Linux systems `ejdb2-java` PPA debian package installs52 cmake .. -DBUILD_JNI_BINDING=ON -DCMAKE_BUILD_TYPE=Release
13 - if [ -n "$COVERALLS" ]; then14 pip install --user cpp-coveralls;16 - if expr "$CONFIG_OPTS" ":" ".*enable-external-tests" > /dev/null; then17 git submodule update --init --recursive;19 - eval "${MATRIX_EVAL}"22 - amd6423 - arm6426 - linux27 - osx30 - clang[all …]