10000 ci: pull libssh2 from www.libssh2.org · libgit2/libgit2@825dd54 · GitHub
[go: up one dir, main page]

Skip to content

Commit 825dd54

Browse files
committed
ci: pull libssh2 from www.libssh2.org
libssh2.org and www.libssh2.org were previously identical; now this is a redirect.
1 parent 1396a9b commit 825dd54

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

ci/docker/centos7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN yum install -y \
1818

1919
FROM yum AS libssh2
2020
RUN cd /tmp && \
21-
curl https://libssh2.org/download/libssh2-1.8.0.tar.gz | tar -xz && \
21+
curl --location --silent --show-error https://www.libssh2.org/download/libssh2-1.8.0.tar.gz | tar -xz && \
2222
cd libssh2-1.8.0 && \
2323
./configure && \
2424
make && \

ci/docker/centos8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN yum install -y \
2020

2121
FROM yum AS libssh2
2222
RUN cd /tmp && \
23-
curl https://libssh2.org/download/libssh2-1.8.0.tar.gz | tar -xz && \
23+
curl --location --silent --show-error https://www.libssh2.org/download/libssh2-1.8.0.tar.gz | tar -xz && \
2424
cd libssh2-1.8.0 && \
2525
./configure && \
2626
make && \

ci/docker/focal

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ RUN cd /tmp && \
4949

5050
FROM mbedtls AS libssh2
5151
RUN cd /tmp && \
52-
curl --insecure --location --silent --show-error https://www.libssh2.org/download/libssh2-1.9.0.tar.gz | \
53-
tar -xz && \
52+
curl --location --silent --show-error https://www.libssh2.org/download/libssh2-1.9.0.tar.gz | tar -xz && \
5453
cd libssh2-1.9.0 && \
5554
mkdir build build-msan && \
5655
cd build && \

ci/docker/xenial

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ RUN cd /tmp && \
4141

4242
FROM mbedtls AS libssh2
4343
RUN cd /tmp && \
44-
curl --insecure --location --silent --show-error https://www.libssh2.org/download/libssh2-1.8.2.tar.gz | \
45-
tar -xz && \
44+
curl --location --silent --show-error https://www.libssh2.org/download/libssh2-1.8.2.tar.gz | tar -xz && \
4645
cd libssh2-1.8.2 && \
4746
CFLAGS=-fPIC cmake -G Ninja -DBUILD_SHARED_LIBS=ON -DCRYPTO_BACKEND=Libgcrypt . && \
4847
ninja install && \

0 commit comments

Comments
 (0)
0