Skip to content

Commit

Permalink
Test windows nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisDenton committed Mar 22, 2024
1 parent 6fa4b85 commit 70f74ed
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,18 @@ jobs:
rust: stable
- os: macos-latest
rust: nightly
# Note that these are on nightly due to rust-lang/rust#63700 not being
# on stable yet
- os: windows-latest
rust: stable-x86_64-msvc
- os: windows-latest
rust: stable-i686-msvc
- os: windows-latest
rust: stable-x86_64-gnu
- os: windows-latest
rust: nightly-x86_64-msvc
- os: windows-latest
rust: nightly-i686-msvc
- os: windows-latest
rust: nightly-x86_64-gnu
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -49,7 +53,7 @@ jobs:
- name: Force frame pointers
run: echo RUSTFLAGS="-Cforce-frame-pointers $RUSTFLAGS" >> $GITHUB_ENV
shell: bash
if: matrix.rust == 'stable-i686-msvc'
if: endsWith(matrix.rust, '-i686-msvc')

- run: cargo build
- run: cargo test
Expand Down

0 comments on commit 70f74ed

Please sign in to comment.