Skip to content

Commit 2632c98

Browse files
committed
ci: fix nightly windows builds
1 parent af8e6cd commit 2632c98

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci-post-merge.yml

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ jobs:
4141
if: matrix.target.os == 'ubuntu-latest'
4242
run: ./scripts/free-disk-space.sh
4343

44+
- name: Install nasm
45+
if: matrix.target.os == 'windows-latest'
46+
uses: ilammy/[email protected]
47+
4448
- name: Install OpenSSL
4549
if: matrix.target.os == 'windows-latest'
4650
shell: bash

justfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ downgrade-for-msrv:
88

99
msrv := ```
1010
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/'
1213
```
13-
msrv_full := msrv + ".0" # comment out if the MSRV has a patch version specified
14-
msrv_rustup := "+" + msrv_full
14+
msrv_rustup := "+" + msrv
1515

1616
non_linux_all_features_list := ```
1717
cargo metadata --format-version=1 \

0 commit comments

Comments
 (0)