Searched +full:libgtest +full:- +full:dev (Results 1 – 25 of 47) sorted by relevance
12
7 # http://www.apache.org/licenses/LICENSE-2.017 FROM gcr.io/oss-fuzz-base/base-builder19 RUN apt-get update && apt-get install -y autoconf automake \20 cmake cmake-curses-gui libre2-dev \21 libicu-dev libboost-dev libboost-thread-dev libboost-system-dev \22 libgflags-dev libgoogle-glog-dev libssl-dev \23 protobuf-compiler libtool wget default-jre icu-devtools24 RUN apt-get install -y libgtest-dev && \31 ln -sn /usr/local/lib/googletest/libgtest.a /usr/lib/libgtest.a && \32 ln -sn /usr/local/lib/googletest/libgtest_main.a /usr/lib/libgtest_main.a && \[all …]
6 build-appleclang:7 runs-on: macos-latest9 fail-fast: false15 # Unlike GCC and upstream Clang, AppleClang still defaults to `-std=c++98`18 # we set the `-std` flag explicitly in order to vary the language version.20 CXXFLAGS: -O3 -g -std=c++${{ matrix.ver }}22 - uses: actions/checkout@v323 - name: Install Abseil, GoogleTest and Benchmark26 brew install abseil googletest google-benchmark28 - run: make && make test[all …]
6 build-linux:7 runs-on: ubuntu-latest12 fail-fast: false16 - uses: actions/checkout@v317 - name: Install CMake19 apt update -y20 apt install -y cmake22 - name: Install Abseil, GoogleTest and Benchmark24 apt update -y25 apt install -y libabsl-dev libgtest-dev libbenchmark-dev[all …]
5 RUN apt-get update && apt-get install -y \7 autotools-dev \8 build-essential \15 libc6-dbg \16 libc6-dev \17 libgtest-dev \23 && apt-get clean26 RUN apt-get install -y \27 google-perftools \28 libgoogle-perftools4 \[all …]
8 RUN apt-get update && apt-get install -y \10 autotools-dev \11 build-essential \19 libc6-dbg \20 libc6-dev \21 libgtest-dev \25 pkg-config \30 openjdk-11-jdk \34 python3-dev \35 python3-setuptools \[all …]
8 RUN apt-get update && apt-get install -y \10 autotools-dev \11 build-essential \19 libc6-dbg \20 libc6-dev \21 libgtest-dev \25 pkg-config \30 openjdk-11-jdk \31 openjdk-17-jdk \35 python3-dev \[all …]
1 FROM python:3.10-buster5 RUN apt-get update && apt-get install -y \7 autotools-dev \8 build-essential \15 libc6-dbg \16 libc6-dev \17 libgtest-dev \23 && apt-get clean \24 && rm -rf /var/lib/apt/lists/*27 RUN python -m pip install --no-cache-dir --upgrade \
1 FROM python:3.7-buster5 RUN apt-get update && apt-get install -y \7 autotools-dev \8 build-essential \15 libc6-dbg \16 libc6-dev \17 libgtest-dev \23 && apt-get clean \24 && rm -rf /var/lib/apt/lists/*27 RUN python -m pip install --no-cache-dir --upgrade \
1 FROM python:3.8-buster5 RUN apt-get update && apt-get install -y \7 autotools-dev \8 build-essential \15 libc6-dbg \16 libc6-dev \17 libgtest-dev \23 && apt-get clean \24 && rm -rf /var/lib/apt/lists/*27 RUN python -m pip install --no-cache-dir --upgrade \
1 FROM python:3.9-buster5 RUN apt-get update && apt-get install -y \7 autotools-dev \8 build-essential \15 libc6-dbg \16 libc6-dev \17 libgtest-dev \23 && apt-get clean \24 && rm -rf /var/lib/apt/lists/*27 RUN python -m pip install --no-cache-dir --upgrade \
3 RUN apt-get update && apt-get install -y gnupg7 RUN apt-get clean && apt-get update && apt-get install -y --force-yes \9 autotools-dev \10 build-essential \17 libc6-dbg \18 libc6-dev \19 libgtest-dev \25 && apt-get clean33 apt-get install -y \34 # -- For javascript and closure compiler -- \[all …]
5 - if: $CI_PIPELINE_SOURCE == 'merge_request_event'6 - if: $CI_PIPELINE_SOURCE == 'push'12 - apt-get --quiet update --yes >/dev/null13 …- apt-get --quiet install --yes clang-15 clang-tidy-15 clang-format-15 git libdrm-dev blueprint-to…14 …- apt-get --quiet install --yes clang llvm make python3 wget sudo rsync lld pkg-config ninja-build…15 - apt-get --quiet install --yes python3-mako python3-jinja2 python3-ply python3-yaml >/dev/null18 - build19 - tidy20 - style25 - mkdir -p install/arm64[all …]
5 RUN apt-get update && apt-get install -y \7 autotools-dev \8 build-essential \15 libc6-dbg \16 libc6-dev \17 libgtest-dev \23 && apt-get clean25 # Update ca-certificates to fix known buster + .NET 5 issue27 RUN apt-get update && apt-get install -y ca-certificates && apt-get clean30 RUN apt-get update && apt-get install -y libunwind8 libicu63 && apt-get clean[all …]
5 RUN apt-get update && apt-get install -y \7 autotools-dev \8 build-essential \15 libc6-dbg \16 libc6-dev \17 libgtest-dev \25 openjdk-8-jdk \26 && apt-get clean29 RUN gpg --keyserver hkp://keyserver.ubuntu.com --recv-keys \32 RUN \curl -sSL https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer | bash -s …[all …]
7 # http://www.apache.org/licenses/LICENSE-2.017 FROM gcr.io/oss-fuzz-base/base-builder18 RUN apt-get update && \19 apt-get -y install \20 libgflags-dev \21 libgoogle-glog-dev \22 libgtest-dev libssl-dev \29 RUN set -ex \30 && curl -s -O https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz \31 && echo "${OPENSSL_HASH} openssl-${OPENSSL_VERSION}.tar.gz" | sha256sum -c \[all …]
8 # http://www.apache.org/licenses/LICENSE-2.020 set -ex22 sudo apt-get update25 sudo apt-get install -y openjdk-8-jdk26 sudo apt-get install -y unzip lsof28 sudo apt-get install -y \30 autotools-dev \31 build-essential \36 gcc-multilib \41 libc6-dbg \[all …]
2 --- |9 # http://www.apache.org/licenses/LICENSE-2.017 FROM silkeh/clang:17-bullseye23 RUN apt update && apt install -y build-essential zlib1g-dev libncurses5-dev libgdbm-dev ${'\\'}24 libnss3-dev libssl-dev libreadline-dev libffi-dev libbz2-dev25 RUN curl -O https://www.python.org/ftp/python/3.7.9/Python-3.7.9.tar.xz && ${'\\'}26 tar -xf Python-3.7.9.tar.xz && ${'\\'}27 cd Python-3.7.9 && ${'\\'}29 make -j 4 && ${'\\'}31 RUN curl https://bootstrap.pypa.io/get-pip.py | python3[all …]