mirror of
https://github.com/actix/actix-web.git
synced 2024-11-18 15:41:17 +00:00
59 lines
1.8 KiB
YAML
59 lines
1.8 KiB
YAML
name: CI (Windows)
|
|
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
VCPKGRS_DYNAMIC: 1
|
|
|
|
jobs:
|
|
build_and_test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
version:
|
|
- stable
|
|
- nightly
|
|
|
|
name: ${{ matrix.version }} - x86_64-pc-windows-msvc
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Install ${{ matrix.version }}
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ matrix.version }}-x86_64-pc-windows-msvc
|
|
profile: minimal
|
|
override: true
|
|
|
|
- name: Install OpenSSL
|
|
run: |
|
|
vcpkg integrate install
|
|
vcpkg install openssl:x64-windows
|
|
Copy-Item C:\vcpkg\installed\x64-windows\bin\libcrypto-1_1-x64.dll C:\vcpkg\installed\x64-windows\bin\libcrypto.dll
|
|
Copy-Item C:\vcpkg\installed\x64-windows\bin\libssl-1_1-x64.dll C:\vcpkg\installed\x64-windows\bin\libssl.dll
|
|
Get-ChildItem C:\vcpkg\installed\x64-windows\bin
|
|
Get-ChildItem C:\vcpkg\installed\x64-windows\lib
|
|
|
|
- name: check build
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: check
|
|
args: --all --bins --examples --tests
|
|
|
|
- name: tests
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: --all --all-features --no-fail-fast -- --nocapture
|
|
--skip=test_h2_content_length
|
|
--skip=test_reading_deflate_encoding_large_random_rustls
|
|
--skip=test_params
|
|
--skip=test_simple
|
|
--skip=test_expect_continue
|
|
--skip=test_http10_keepalive
|
|
--skip=test_slow_request
|
|
--skip=test_connection_force_close
|
|
--skip=test_connection_server_close
|
|
--skip=test_connection_wait_queue_force_close
|