diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b69999d6..4f83fbbd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,8 +106,6 @@ jobs: run: echo "::set-output name=version::$(rustc --version)" - name: Set vcpkg root run: echo "::set-env name=VCPKG_ROOT::$Env:VCPKG_INSTALLATION_ROOT" - - name: test - run: echo $Env:VCPKG_ROOT - name: Install OpenSSL run: vcpkg install openssl:x64-windows - name: Cache cargo index diff --git a/openssl/src/ssl/test/mod.rs b/openssl/src/ssl/test/mod.rs index c50450fd..8233e6f7 100644 --- a/openssl/src/ssl/test/mod.rs +++ b/openssl/src/ssl/test/mod.rs @@ -599,6 +599,7 @@ fn refcount_ssl_context() { #[test] #[cfg_attr(libressl250, ignore)] +#[cfg_attr(target_os = "windows", ignore)] #[cfg_attr(all(target_os = "macos", feature = "vendored"), ignore)] fn default_verify_paths() { let mut ctx = SslContext::builder(SslMethod::tls()).unwrap();