File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ ci-test = " hack --feature-powerset --exclude=actix-rt --exclude=actix-ser
18
18
ci-test-rt = " hack --feature-powerset --exclude-features=io-uring test --package=actix-rt --lib --tests --no-fail-fast -- --nocapture"
19
19
ci-test-server = " hack --feature-powerset --exclude-features=io-uring test --package=actix-server --lib --tests --no-fail-fast -- --nocapture"
20
20
21
+ # tests avoiding io-uring feature on Windows
22
+ ci-test-win = " hack --feature-powerset --depth 2 --exclude=actix-rt --exclude=actix-server --exclude-features=io-uring test --workspace --lib --tests --no-fail-fast -- --nocapture"
23
+ ci-test-rt-win = " hack --feature-powerset --depth 2 --exclude-features=io-uring test --package=actix-rt --lib --tests --no-fail-fast -- --nocapture"
24
+ ci-test-server-win = " hack --feature-powerset --depth 2 --exclude-features=io-uring test --package=actix-server --lib --tests --no-fail-fast -- --nocapture"
25
+
21
26
# test with io-uring feature
22
27
ci-test-rt-linux = " hack --feature-powerset test --package=actix-rt --lib --tests --no-fail-fast -- --nocapture"
23
28
ci-test-server-linux = " hack --feature-powerset test --package=actix-server --lib --tests --no-fail-fast -- --nocapture"
Original file line number Diff line number Diff line change @@ -109,13 +109,19 @@ jobs:
109
109
with : { command: ci-check-linux }
110
110
111
111
- name : tests
112
- if : >
113
- matrix.target.os != 'ubuntu-latest'
114
- && matrix.target.triple != 'x86_64-pc-windows-gnu'
112
+ if : matrix.target.os == 'macos-latest'
115
113
run : |
116
114
cargo ci-test
117
115
cargo ci-test-rt
118
116
cargo ci-test-server
117
+ - name : tests
118
+ if : >
119
+ matrix.target.os == 'windows-latest'
120
+ && matrix.target.triple != 'x86_64-pc-windows-gnu'
121
+ run : |
122
+ cargo ci-test-win
123
+ cargo ci-test-rt-win
124
+ cargo ci-test-server-win
119
125
- name : tests
120
126
if : matrix.target.os == 'ubuntu-latest'
121
127
run : |
You can’t perform that action at this time.
0 commit comments