File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 41
41
if : matrix.target.os == 'ubuntu-latest'
42
42
run : ./scripts/free-disk-space.sh
43
43
44
+ - name : Install nasm
45
+ if : matrix.target.os == 'windows-latest'
46
+
47
+
44
48
- name : Install OpenSSL
45
49
if : matrix.target.os == 'windows-latest'
46
50
shell : bash
Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ downgrade-for-msrv:
8
8
9
9
msrv := ```
10
10
cargo metadata --format-version=1 \
11
- | jq -r ' first(.packages[] | select(.source == null and .name == "actix-tls")) | .rust_version'
11
+ | jq -r ' first(.packages[] | select(.source == null and .name == "actix-tls")) | .rust_version' \
12
+ | sed -E ' s/^1\.([0-9]{2})$/1\.\1\.0/'
12
13
```
13
- msrv_full := msrv + " .0" # comment out if the MSRV has a patch version specified
14
- msrv_rustup := " +" + msrv_full
14
+ msrv_rustup := " +" + msrv
15
15
16
16
non_linux_all_features_list := ```
17
17
cargo metadata --format-version=1 \
You can’t perform that action at this time.
0 commit comments