File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 build-full :
12- runs-on : ubuntu-latest
12+ runs-on : ${{ matrix.os }}
1313 strategy :
1414 matrix :
15+ os : [ubuntu-latest, windows-latest]
1516 rust : [stable, beta, nightly]
1617 continue-on-error : ${{ matrix.rust == 'nightly' }}
1718 steps :
2021 run : |
2122 rustup toolchain install ${{ matrix.rust }} --profile minimal --component clippy,rustfmt
2223 rustup default ${{ matrix.rust }}
24+ - name : Install OpenSSL on Windows
25+ if : runner.os == 'Windows'
26+ run : |
27+ vcpkg integrate install
28+ vcpkg.exe install openssl:x64-windows-static-md
2329 - name : Build
2430 run : cargo build --verbose --examples --all-features
2531 - name : Test
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ impl AsyncAccept for UnixListener {
5151 }
5252}
5353
54+ #[ cfg( unix) ]
5455#[ cfg_attr( docsrs, doc( cfg( feature = "tokio-net" ) ) ) ]
5556impl AsyncListener for UnixListener {
5657 #[ inline]
You can’t perform that action at this time.
0 commit comments