Skip to content

Commit 8dc0ba7

Browse files
committed
Change libssh2 version to 1.9.0 on focal
1 parent 3433acd commit 8dc0ba7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/docker/focal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ RUN cd /tmp && \
4848

4949
FROM mbedtls AS libssh2
5050
RUN cd /tmp && \
51-
curl --insecure --location --silent --show-error https://www.libssh2.org/download/libssh2-1.8.2.tar.gz | \
51+
curl --insecure --location --silent --show-error https://www.libssh2.org/download/libssh2-1.9.0.tar.gz | \
5252
tar -xz && \
53-
cd libssh2-1.8.2 && \
53+
cd libssh2-1.9.0 && \
5454
mkdir build build-msan && \
5555
cd build && \
5656
CC=clang-10 CFLAGS="-fPIC" cmake -G Ninja -DBUILD_SHARED_LIBS=ON -DCRYPTO_BACKEND=Libgcrypt -DCMAKE_PREFIX_PATH=/usr/local -DCMAKE_INSTALL_PREFIX=/usr/local .. && \
@@ -59,7 +59,7 @@ RUN cd /tmp && \
5959
CC=clang-10 CFLAGS="-fPIC -fsanitize=memory -fno-optimize-sibling-calls -fsanitize-memory-track-origins=2 -fno-omit-frame-pointer" LDFLAGS="-fsanitize=memory" cmake -G Ninja -DBUILD_SHARED_LIBS=ON -DCRYPTO_BACKEND=mbedTLS -DCMAKE_PREFIX_PATH=/usr/local/msan -DCMAKE_INSTALL_PREFIX=/usr/local/msan .. && \
6060
ninja install && \
6161
cd .. && \
62-
rm -rf libssh2-1.8.2
62+
rm -rf libssh2-1.9.0
6363

6464
FROM libssh2 AS valgrind
6565
RUN cd /tmp && \

0 commit comments

Comments
 (0)