Searched +full:1 +full:- +full:installer +full:- +full:linux +full:- +full:x86_64 (Results 1 – 25 of 89) sorted by relevance
1234
8 # http://www.apache.org/licenses/LICENSE-2.018 set -ex26 (cd third_party/$RUN_TESTS_FLAGS && git fetch --all && git checkout origin/master)32 # make_grpcio_tools.py requires bazel >=0.13.1 to run (Kokoro workers only have bazel 0.9)33 …curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/0.13.1/bazel-0.13.1-installer-…34 chmod +x ./bazel-0.13.1-installer-linux-x86_64.sh35 ./bazel-0.13.1-installer-linux-x86_64.sh --user36 rm -f ./bazel-0.13.1-installer-linux-x86_64.sh43 git -c user.name='foo' -c user.email='foo@google.com' commit -a -m 'Update submodule'45 tools/run_tests/run_tests_matrix.py -f linux --inner_jobs 4 -j 4 --internal_ci --build_only
8 # http://www.apache.org/licenses/LICENSE-2.021 local_bazel_ver=$(bazel version 2>&1 | grep -i label | awk '{print $3}')27 set -e30 mkdir -p /bazel32 if [[ ! -f "bazel-$BAZEL_VERSION-installer-linux-x86_64.sh" ]]; then33 …curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VE…35 chmod +x /bazel/bazel-*.sh36 /bazel/bazel-$BAZEL_VERSION-installer-linux-x86_64.sh37 rm -f /bazel/bazel-$BAZEL_VERSION-installer-linux-x86_64.sh40 echo "source /usr/local/lib/bazel/bin/bazel-complete.bash" >> ~/.bashrc
7 # http://www.apache.org/licenses/LICENSE-2.021 RUN set -ex; \23 echo deb http://deb.debian.org/debian buster-backports main > \25 apt-get update; \26 apt-get -y install python3 python3-pip git curl sudo lz4 tar ccache tini \27 libpulse0 libgl1 libxml2 libc6-dev-i386 libtinfo5 \28 gnupg2 pkg-config zip g++ zlib1g-dev unzip \29 python3-distutils clang-8 gcc-7 g++-7; \30 update-alternatives --install /usr/bin/python python /usr/bin/python3.7 1; \31 gcc-7 --version; \[all …]
32 …curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VE…33 chmod +x bazel-$BAZEL_VERSION-installer-linux-x86_64.sh && \34 ./bazel-$BAZEL_VERSION-installer-linux-x86_64.sh && \35 rm -rf bazel-$BAZEL_VERSION-installer-linux-x86_64.sh; \38 # Upgrade gcc-8 if argument is passed40 add-apt-repository ppa:ubuntu-toolchain-r/test -y && \41 apt-get update && \42 apt-get install gcc-8 g++-8 -y && \43 …update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 80 --slave /usr/bin/g++ g++ /usr/bin…44 …update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70 --slave /usr/bin/g++ g++ /usr/bin…[all …]
7 # http://www.apache.org/licenses/LICENSE-2.026 FROM nvidia/cuda${ARCH:+-$ARCH}:${CUDA}-base-ubuntu${UBUNTU_VERSION} as base31 ARG CUDNN=8.0.4.30-133 ARG LIB_DIR_PREFIX=x86_6434 ARG LIBNVINFER=7.1.3-138 SHELL ["/bin/bash", "-c"]39 RUN apt-get update && apt-get install -y --no-install-recommends \40 build-essential \41 cuda-command-line-tools-${CUDA/./-} \42 libcublas-${CUDA/./-} \[all …]
7 # http://www.apache.org/licenses/LICENSE-2.026 RUN apt-get update && apt-get install -y --no-install-recommends \27 build-essential \30 libcurl3-dev \31 libfreetype6-dev \32 libhdf5-serial-dev \33 libzmq3-dev \34 pkg-config \36 software-properties-common \40 zlib1g-dev \[all …]
8 # http://www.apache.org/licenses/LICENSE-2.025 eval "$1"27 if [[ $? -ne 0 ]]; then29 eval "$1"34 echo "$@" 1>&2 ; exit 1;42 result=$("$@" 2>&1) || die "$result"45 set -x50 mkdir -p /tmpfs/bazel_output57 case "$(uname -s)" in58 Darwin) local name=bazelisk-darwin-amd64 ;;[all …]
7 - /usr/local/bin:$PATH11 - compiler: gcc15 - lcov17 - compiler: gcc19 - compiler: gcc21 - compiler: gcc25 - g++-multilib27 - compiler: gcc31 - g++-multilib33 - compiler: gcc[all …]
7 - compiler: gcc11 - lcov13 - compiler: gcc15 - compiler: gcc17 - compiler: gcc21 - g++-multilib22 - libc6:i38624 - COMPILER=g++25 - C_COMPILER=gcc26 - BUILD_TYPE=Debug[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 …]
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 …]
7 # http://www.apache.org/licenses/LICENSE-2.028 # Enable both PowerTools and EPEL otherwise some packages like hdf5-devel fail to install29 RUN dnf install -y 'dnf-command(config-manager)' && \30 dnf config-manager --set-enabled powertools && \31 …dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-"${CENTOS_VERSION}".noarc…34 RUN yum update -y && \35 yum install -y \37 freetype-devel \39 gcc-c++ \41 hdf5-devel \[all …]
7 # http://www.apache.org/licenses/LICENSE-2.026 # Enable both PowerTools and EPEL otherwise some packages like hdf5-devel fail to install28 yum update -y && \29 yum install -y epel-release31 RUN yum update -y && \32 yum install -y \34 freetype-devel \36 gcc-c++ \38 hdf5-devel \39 java-1.8.0-openjdk \[all …]
7 # http://www.apache.org/licenses/LICENSE-2.028 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \29 build-essential \32 libcurl3-dev \33 libfreetype6-dev \34 libhdf5-serial-dev \35 libzmq3-dev \36 pkg-config \38 software-properties-common \42 zlib1g-dev \[all …]
1 Building libjpeg-turbo6 ------------------11 - [CMake](http://www.cmake.org) v2.8.12 or later13 - [NASM](http://www.nasm.us) or [YASM](http://yasm.tortall.net)14 (if building x86 or x86-64 SIMD extensions)19 - NOTE: Currently, if it is desirable to hide the SIMD function symbols in21 libjpeg-turbo, then NASM 2.14 or later or YASM must be used when22 building libjpeg-turbo.25 Red Hat Enterprise Linux 8 and in the PowerTools repository on CentOS 8,28 The binary RPMs released by the NASM project do not work on older Linux[all …]