From 194ed42b6698f978d23aace4dec2dfe535579dbc Mon Sep 17 00:00:00 2001 From: Dentrax Date: Mon, 12 Apr 2021 18:48:36 +0300 Subject: [PATCH] chore(ci): fix windows build error Signed-off-by: Dentrax --- .github/workflows/workflow.yml | 27 +-------------------------- Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 27 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index d961511..c9fc30d 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -64,29 +64,4 @@ jobs: profile: minimal override: true - name: Build | Check - run: cargo check --all - - # Run tests on Linux, macOS, and Windows - # On both Rust stable and Rust nightly - test: - name: Test Suite - runs-on: ${{ matrix.os }} - needs: cargo_check # First check then run expansive tests - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, macOS-latest, windows-latest] - rust: [stable, nightly] - steps: - - name: Setup | Checkout - uses: actions/checkout@v2 - # Install all the required dependencies for testing - - name: Setup | Rust - uses: actions-rs/toolchain@v1 - with: - toolchain: ${{ matrix.rust }} - profile: minimal - override: true - # Run the ignored tests that expect the above setup - - name: Build | Test - run: cargo test --all-features -- -Z unstable-options --include-ignored \ No newline at end of file + run: cargo check --all \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 978acbb..8e81d88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,4 +17,5 @@ tokio = { version = "1.4.0", features = ["full"] } anyhow = "1.0.40" serde_json = "1.0.64" clap = "2.33.3" -prettytable-rs = "0.8.0" \ No newline at end of file +prettytable-rs = "0.8.0" +openssl = { version = "0.10", features = ["vendored"] } \ No newline at end of file