Skip to content

Commit

Permalink
ci: fix nightly windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed May 12, 2024
1 parent af8e6cd commit 2632c98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci-post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
if: matrix.target.os == 'ubuntu-latest'
run: ./scripts/free-disk-space.sh

- name: Install nasm
if: matrix.target.os == 'windows-latest'
uses: ilammy/setup-nasm@v1.5.1

- name: Install OpenSSL
if: matrix.target.os == 'windows-latest'
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ downgrade-for-msrv:

msrv := ```
cargo metadata --format-version=1 \
| jq -r 'first(.packages[] | select(.source == null and .name == "actix-tls")) | .rust_version'
| jq -r 'first(.packages[] | select(.source == null and .name == "actix-tls")) | .rust_version' \
| sed -E 's/^1\.([0-9]{2})$/1\.\1\.0/'
```
msrv_full := msrv + ".0" # comment out if the MSRV has a patch version specified
msrv_rustup := "+" + msrv_full
msrv_rustup := "+" + msrv
non_linux_all_features_list := ```
cargo metadata --format-version=1 \
Expand Down

0 comments on commit 2632c98

Please sign in to comment.