File tree 4 files changed +8
-3
lines changed
4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 18
18
rust : stable
19
19
docker : linux64
20
20
target : x86_64-unknown-linux-gnu
21
+ - build : ubuntu-lts
22
+ os : ubuntu-24.04
23
+ rust : 1.75
24
+ docker : linux64
25
+ target : x86_64-unknown-linux-gnu
21
26
- build : x86_64-beta
22
27
os : ubuntu-latest
23
28
rust : beta
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ use std::env;
2
2
3
3
fn main ( ) {
4
4
println ! (
5
- "cargo:: rustc-check-cfg=cfg(\
5
+ "cargo:rustc-check-cfg=cfg(\
6
6
need_openssl_init,\
7
7
need_openssl_probe,\
8
8
)"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN apt-get install -y --no-install-recommends \
6
6
musl-tools
7
7
8
8
RUN \
9
- curl https://www.openssl.org/source/old/1.0.2/openssl-1.0.2g.tar.gz | tar xzf - && \
9
+ curl -L https://www.openssl.org/source/old/1.0.2/openssl-1.0.2g.tar.gz | tar xzf - && \
10
10
cd openssl-1.0.2g && \
11
11
CC=musl-gcc ./Configure --prefix=/openssl no-dso linux-x86_64 -fPIC && \
12
12
make -j10 && \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use std::process::Command;
6
6
fn main ( ) {
7
7
println ! ( "cargo:rerun-if-changed=curl" ) ;
8
8
println ! (
9
- "cargo:: rustc-check-cfg=cfg(\
9
+ "cargo:rustc-check-cfg=cfg(\
10
10
libcurl_vendored,\
11
11
link_libnghttp2,\
12
12
link_libz,\
You can’t perform that action at this time.
0 commit comments