Home
last modified time | relevance | path

Searched +full:libssl +full:- +full:dev (Results 1 – 25 of 163) sorted by relevance

1234567

/third_party/grpc/tools/dockerfile/test/python_debian11_default_x64/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
21 RUN apt-get update && apt-get install -y \
22 build-essential \
25 pkg-config \
26 && apt-get clean
29 RUN apt-get update && apt-get install -y \
32 && apt-get clean
35 RUN apt-get update && apt-get install -y \
37 libc6-dbg \
38 libc6-dev \
[all …]
/third_party/grpc/tools/run_tests/sanity/
Dcheck_bad_dependencies.sh8 # http://www.apache.org/licenses/LICENSE-2.0
16 set -ex
21 test "$(bazel query 'somepath("//:grpc_unsecure", "//third_party:libssl")' 2>/dev/null | wc -l)" -e…
22 …(bazel query 'somepath("//:grpc++_unsecure", "//third_party:libssl")' 2>/dev/null | wc -l)" -eq 0 …
23 …l query 'somepath("//:grpc++_codegen_proto", "//third_party:libssl")' 2>/dev/null | wc -l)" -eq 0 …
27 test "$(bazel query 'deps("//:grpc")' 2>/dev/null | grep -Ec 'src/cpp|include/grpcpp')" -eq 0 || ex…
/third_party/grpc/templates/tools/dockerfile/test/cxx_debian11_openssl111_x64/
DDockerfile.template2 --- |
9 # http://www.apache.org/licenses/LICENSE-2.0
27 # Install openssl 1.1.1 by installing libssl-dev on debian:11
28 RUN apt-get update && apt-get install -y build-essential zlib1g-dev libssl-dev
/third_party/nghttp2/docker/
DDockerfile5 RUN apt-get update && \
6 DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
7 git clang make binutils autoconf automake autotools-dev libtool \
8 pkg-config cmake cmake-data \
9 zlib1g-dev libev-dev libjemalloc-dev ruby-dev libc-ares-dev bison \
10 libelf-dev libbrotli-dev
12 RUN git clone --recursive --shallow-submodules --depth 1 -b v1.36.1 https://github.com/aws/aws-lc &…
13 cd aws-lc && \
14 cmake -B build -DDISABLE_GO=ON && \
15 make -j$(nproc) -C build && \
[all …]
/third_party/ltp/ci/
Ddebian.minimal.sh2 # Copyright (c) 2018-2023 Petr Vorel <pvorel@suse.cz>
3 set -ex
5 apt="apt remove -y"
10 libacl1-dev \
11 libaio-dev \
13 libcap-dev \
14 libkeyutils-dev \
15 libnuma-dev \
17 libselinux1-dev \
18 libsepol-dev \
[all …]
Ddebian.sh2 # Copyright (c) 2018-2021 Petr Vorel <pvorel@suse.cz>
3 set -ex
5 # workaround for missing oldstable-updates repository
6 # W: Failed to fetch http://deb.debian.org/debian/dists/oldstable-updates/main/binary-amd64/Packages
7 grep -v oldstable-updates /etc/apt/sources.list > /tmp/sources.list && mv /tmp/sources.list /etc/ap…
14 apt="apt install -y --no-install-recommends"
17 acl-dev \
22 build-essential \
30 libacl1-dev \
31 libaio-dev \
[all …]
Ddebian.i386.sh2 # Copyright (c) 2018-2020 Petr Vorel <pvorel@suse.cz>
3 set -ex
5 dpkg --add-architecture i386
8 apt install -y --no-install-recommends \
9 linux-libc-dev:i386 \
10 gcc-multilib \
14 libc6-dev-i386 \
18 libssl-dev:i386 \
19 libtirpc-dev:i386 \
20 pkg-config:i386
/third_party/libcoap/build-env/
DDockerfile.build-env1 FROM debian:testing-slim
3 RUN apt-get update && apt-get install -y autoconf automake gcc clang \
4 libtool libtool-bin make pkg-config libcunit1-dev libssl-dev \
5 libgnutls28-dev libmbedtls-dev exuberant-ctags git valgrind \
6 graphviz doxygen libxml2-utils xsltproc docbook-xml docbook-xsl asciidoc
7 RUN apt-get clean
/third_party/rust/rust/src/ci/docker/host-x86_64/x86_64-gnu-aux/
DDockerfile4 RUN apt-get update && apt-get install -y --no-install-recommends \
7 ninja-build \
10 ca-certificates \
14 libssl-dev \
16 xz-utils \
17 pkg-config \
18 libgl1-mesa-dev \
19 llvm-dev \
20 libfreetype6-dev \
21 libexpat1-dev \
[all …]
/third_party/grpc/tools/dockerfile/test/cxx_debian11_openssl111_x64/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
21 RUN apt-get update && apt-get install -y \
22 build-essential \
25 pkg-config \
26 && apt-get clean
29 RUN apt-get update && apt-get install -y \
32 && apt-get clean
35 RUN apt-get update && apt-get install -y \
37 libc6-dbg \
38 libc6-dev \
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/x86_64-gnu-debug/
DDockerfile4 RUN apt-get update && apt-get install -y --no-install-recommends \
7 ninja-build \
10 ca-certificates \
12 python3-dev \
13 libxml2-dev \
14 libncurses-dev \
15 libedit-dev \
22 libssl-dev \
23 pkg-config \
24 xz-utils \
[all …]
/third_party/grpc/templates/tools/dockerfile/
Dcompile_python_312.include4 RUN apt-get update && apt-get install -y zlib1g-dev libssl-dev libsqlite3-dev && apt-get clean
5 RUN apt-get update && apt-get install -y jq build-essential libffi-dev && apt-get clean
8 wget -q https://www.python.org/ftp/python/3.12.0/Python-3.12.0.tgz && ${'\\'}
9 tar xzvf Python-3.12.0.tgz && ${'\\'}
10 cd Python-3.12.0 && ${'\\'}
12 make -j4 && ${'\\'}
17 echo "d6eda3e1399cef5dfde7c4f319b0596c Python-3.12.0.tgz" > checksum.md5 && ${'\\'}
18 md5sum -c checksum.md5
20 RUN python3.12 -m ensurepip && ${'\\'}
21 python3.12 -m pip install coverage
Dcompile_python_310.include4 RUN apt-get update && apt-get install -y zlib1g-dev libssl-dev libsqlite3-dev && apt-get clean
5 RUN apt-get update && apt-get install -y jq build-essential libffi-dev && apt-get clean
8 wget -q https://www.python.org/ftp/python/3.10.3/Python-3.10.3.tgz && ${'\\'}
9 tar xzvf Python-3.10.3.tgz && ${'\\'}
10 cd Python-3.10.3 && ${'\\'}
12 make -j4 && ${'\\'}
16 echo "f276ffcd05bccafe46da023d0a5bb04a Python-3.10.3.tgz" > checksum.md5 && ${'\\'}
17 md5sum -c checksum.md5
19 RUN python3.10 -m ensurepip && ${'\\'}
20 python3.10 -m pip install coverage
Dcompile_python_313.include4 RUN apt-get update && apt-get install -y zlib1g-dev libssl-dev libsqlite3-dev && apt-get clean
5 RUN apt-get update && apt-get install -y jq build-essential libffi-dev && apt-get clean
8 wget -q https://www.python.org/ftp/python/3.13.0/Python-3.13.0rc2.tgz && ${'\\'}
9 tar xzvf Python-3.13.0rc2.tgz && ${'\\'}
10 cd Python-3.13.0rc2 && ${'\\'}
12 make -j4 && ${'\\'}
17 echo "ad7f44153649e27ec385e7633e853e03 Python-3.13.0rc2.tgz" > checksum.md5 && ${'\\'}
18 md5sum -c checksum.md5
20 RUN python3.13 -m ensurepip && ${'\\'}
21 python3.13 -m pip install coverage
Dcompile_python_311.include4 RUN apt-get update && apt-get install -y zlib1g-dev libssl-dev libsqlite3-dev && apt-get clean
5 RUN apt-get update && apt-get install -y jq build-essential libffi-dev && apt-get clean
8 wget -q https://www.python.org/ftp/python/3.11.4/Python-3.11.4.tgz && ${'\\'}
9 tar xzvf Python-3.11.4.tgz && ${'\\'}
10 cd Python-3.11.4 && ${'\\'}
12 make -j4 && ${'\\'}
17 echo "bf6ec50f2f3bfa6ffbdb385286f2c628 Python-3.11.4.tgz" > checksum.md5 && ${'\\'}
18 md5sum -c checksum.md5
20 RUN python3.11 -m ensurepip && ${'\\'}
21 python3.11 -m pip install coverage
Dcompile_python_38.include4 RUN apt-get update && apt-get install -y zlib1g-dev libssl-dev libsqlite3-dev && apt-get clean
5 RUN apt-get update && apt-get install -y jq build-essential libffi-dev && apt-get clean
8 wget -q https://www.python.org/ftp/python/3.8.13/Python-3.8.13.tgz && ${'\\'}
9 tar xzvf Python-3.8.13.tgz && ${'\\'}
10 cd Python-3.8.13 && ${'\\'}
12 make -j4 && ${'\\'}
16 echo "3c49180c6b43df3519849b7e390af0b9 Python-3.8.13.tgz" > checksum.md5 && ${'\\'}
17 md5sum -c checksum.md5
19 RUN python3.8 -m ensurepip && ${'\\'}
20 python3.8 -m pip install coverage
Dcompile_python_37.include4 RUN apt-get update && apt-get install -y zlib1g-dev libssl-dev libsqlite3-dev && apt-get clean
5 RUN apt-get update && apt-get install -y jq build-essential libffi-dev && apt-get clean
8 wget -q https://www.python.org/ftp/python/3.7.13/Python-3.7.13.tgz && ${'\\'}
9 tar xzvf Python-3.7.13.tgz && ${'\\'}
10 cd Python-3.7.13 && ${'\\'}
12 make -j4 && ${'\\'}
16 echo "e0d3321026d4a5f3a3890b5d821ad762 Python-3.7.13.tgz" > checksum.md5 && ${'\\'}
17 md5sum -c checksum.md5
19 RUN python3.7 -m ensurepip && ${'\\'}
20 python3.7 -m pip install coverage
Dcompile_python_36.include4 RUN apt-get update && apt-get install -y zlib1g-dev libssl-dev && apt-get clean
5 RUN apt-get update && apt-get install -y jq build-essential libffi-dev && apt-get clean
8 wget -q https://www.python.org/ftp/python/3.6.15/Python-3.6.15.tgz && ${'\\'}
9 tar xzvf Python-3.6.15.tgz && ${'\\'}
10 cd Python-3.6.15 && ${'\\'}
12 make -j4 && ${'\\'}
16 echo "f9e6f91c754a604f4fc6f6c7683723fb Python-3.6.15.tgz" > checksum.md5 && ${'\\'}
17 md5sum -c checksum.md5
19 RUN python3.6 -m ensurepip && ${'\\'}
20 python3.6 -m pip install coverage
/third_party/rust/rust/src/ci/docker/scripts/
Dcross-apt-packages.sh2 apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
6 ca-certificates \
17 libncurses-dev \
18 libssl-dev \
19 libtool-bin \
21 ninja-build \
23 pkg-config \
30 xz-utils
/third_party/mesa3d/.gitlab-ci/container/debian/
Dx86_64_build.sh5 # .gitlab-ci/image-tags.yml tags:
8 set -e
10 . .gitlab-ci/setup-test-env.sh
12 set -o xtrace
21 autotools-dev
24 libssl-dev
29 "clang-${LLVM_VERSION}"
31 libarchive-dev
32 libdrm-dev
33 "libclang-cpp${LLVM_VERSION}-dev"
[all …]
Darm64_build.sh4 set -e
6 . .gitlab-ci/setup-test-env.sh
8 set -o xtrace
12 apt-get -y install ca-certificates curl gnupg2
13 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list.d/*
14 …b.freedesktop.org/gfx-ci/ci-deb-repo/-/raw/${PKG_REPO_REV}/ ${FDO_DISTRIBUTION_VERSION%-*} main" |…
16 . .gitlab-ci/container/debian/maybe-add-llvm-repo.sh
20 libssl-dev
24 apt-utils
25 android-libext4-utils
[all …]
/third_party/grpc/templates/src/php/docker/php-src/
DDockerfile.template2 --- |
9 # http://www.apache.org/licenses/LICENSE-2.0
19 RUN apt-get -qq update && apt-get -qq -y upgrade && apt-get -qq install -y ${'\\'}
20 autoconf bison build-essential git libtool ${'\\'}
21 libcurl4-openssl-dev libedit-dev libonig-dev libsodium-dev ${'\\'}
22 libsqlite3-dev libssl-dev libxml2-dev ${'\\'}
23 pkg-config re2c valgrind wget zlib1g-dev
30 WORKDIR /github/php-src
32 ARG MAKEFLAGS=-j8
34 RUN git clone https://github.com/php/php-src .
[all …]
/third_party/nghttp2/.github/workflows/
Dbuild.yml5 permissions: read-all
15 WOLFSSL_VERSION: v5.7.2-stable
18 build-cache:
21 os: [ubuntu-24.04, macos-13, macos-14]
23 runs-on: ${{ matrix.os }}
26 - name: Checkout
28 - name: Restore libbpf cache
29 id: cache-libbpf
34 key: ${{ matrix.os }}-libbpf-${{ env.LIBBPF_VERSION }}
35 - name: Restore OpenSSL v1.1.1 cache
[all …]
/third_party/mindspore/mindspore-src/source/scripts/docker/mindspore-cpu/0.5.0-beta/
DDockerfile6 ENV PYTHON_ROOT_PATH /usr/local/python-3.7.5
11 && DEBIAN_FRONTEND=noninteractive apt install -y \
15 xz-utils \
16 net-tools \
17 openssh-client \
23 bash-completion
26 RUN DEBIAN_FRONTEND=noninteractive apt install -y \
31 libgmp-dev \
39 RUN echo "dash dash/sh boolean false" | debconf-set-selections
40 RUN DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash
[all …]
/third_party/mindspore/mindspore-src/source/scripts/docker/mindspore-cpu/0.2.0-alpha/
DDockerfile6 ENV PYTHON_ROOT_PATH /usr/local/python-3.7.5
11 && DEBIAN_FRONTEND=noninteractive apt install -y \
15 xz-utils \
16 net-tools \
17 openssh-client \
23 bash-completion
26 RUN DEBIAN_FRONTEND=noninteractive apt install -y \
31 libgmp-dev \
39 RUN echo "dash dash/sh boolean false" | debconf-set-selections
40 RUN DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash
[all …]

1234567