mirror of https://github.com/fafhrd91/actix-net
skip feature checks on mingw
This commit is contained in:
parent
2c547c43e1
commit
8e4f252ef3
|
@ -5,6 +5,7 @@ lint = "clippy --workspace --all-features --tests --examples --bins -- -Dclippy:
|
||||||
ci-doctest = "test --workspace --all-features --doc --no-fail-fast -- --nocapture"
|
ci-doctest = "test --workspace --all-features --doc --no-fail-fast -- --nocapture"
|
||||||
|
|
||||||
# just check the library (without dev deps)
|
# just check the library (without dev deps)
|
||||||
|
ci-check-min = "hack --workspace --no-default-features"
|
||||||
ci-check-lib = "hack --workspace --feature-powerset --exclude-features io-uring check"
|
ci-check-lib = "hack --workspace --feature-powerset --exclude-features io-uring check"
|
||||||
ci-check-lib-linux = "hack --workspace --feature-powerset check"
|
ci-check-lib-linux = "hack --workspace --feature-powerset check"
|
||||||
|
|
||||||
|
|
|
@ -76,13 +76,19 @@ jobs:
|
||||||
args: cargo-hack
|
args: cargo-hack
|
||||||
|
|
||||||
- name: check lib
|
- name: check lib
|
||||||
if: matrix.target.os != 'ubuntu-latest'
|
if: >
|
||||||
|
matrix.target.os != 'ubuntu-latest'
|
||||||
|
&& matrix.target.triple != 'x86_64-pc-windows-gnu'
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with: { command: ci-check-lib }
|
with: { command: ci-check-lib }
|
||||||
- name: check lib
|
- name: check lib
|
||||||
if: matrix.target.os == 'ubuntu-latest'
|
if: matrix.target.os == 'ubuntu-latest'
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with: { command: ci-check-lib-linux }
|
with: { command: ci-check-lib-linux }
|
||||||
|
- name: check lib
|
||||||
|
if: matrix.target.triple != 'x86_64-pc-windows-gnu'
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with: { command: ci-check-min }
|
||||||
|
|
||||||
- name: check full
|
- name: check full
|
||||||
# TODO: compile OpenSSL and run tests on MinGW
|
# TODO: compile OpenSSL and run tests on MinGW
|
||||||
|
|
Loading…
Reference in New Issue