Searched +full:bazel +full:- +full:installer (Results 1 – 25 of 56) sorted by relevance
123
1 RUN apt-get update && apt-get install -y \2 build-essential \6 openjdk-8-jdk \7 python3-dev \11 RUN python3 -m pip --no-cache-dir install \25 # Install bazel27 RUN mkdir /bazel && \28 …wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION…29 …wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \30 chmod +x /bazel/installer.sh && \[all …]
1 # Install bazel3 RUN mkdir /bazel && \4 …curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_V…5 …curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENS…6 bash /bazel/installer.sh && \7 rm -f /bazel/installer.sh
1 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \4 # Install bazel6 RUN mkdir /bazel && \7 …curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_V…8 …curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENS…9 bash /bazel/installer.sh && \10 rm -f /bazel/installer.sh
8 # http://www.apache.org/licenses/LICENSE-2.017 # Select bazel version.21 local_bazel_ver=$(bazel version 2>&1 | grep -i label | awk '{print $3}')27 set -e29 # Install bazel.30 mkdir -p /bazel31 cd /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-*.sh[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 …]
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-134 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/./-} \43 libcublas-dev-${CUDA/./-} \[all …]
8 # http://www.apache.org/licenses/LICENSE-2.018 set -ex26 (cd third_party/$RUN_TESTS_FLAGS && git fetch --all && git checkout origin/master)31 # Upgrade bazel.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'[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 …]
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.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 …]
30 # Upgrade Bazel version if argument is passed32 …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…[all …]
8 # http://www.apache.org/licenses/LICENSE-2.019 # TODO(b/158448780): Guard bazel version with IfChangeThenChange.27 if [[ $? -ne 0 ]]; then45 set -x48 # TODO(b/158448780): Guard bazel installation with IfChangeThenChange.50 mkdir -p /tmpfs/bazel_output54 # Downloads bazelisk to ~/bin as `bazel`.57 case "$(uname -s)" in58 Darwin) local name=bazelisk-darwin-amd64 ;;59 Linux) local name=bazelisk-linux-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 …]