File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,15 @@ name: CI
77
88env :
99 CARGO_ARGS : --features "ssl jit"
10+ NON_WASM_PACKAGES : >
11+ -p rustpython-bytecode
12+ -p rustpython-common
13+ -p rustpython-compiler
14+ -p rustpython-parser
15+ -p rustpython-vm
16+ -p rustpython-jit
17+ -p rustpython-derive
18+ -p rustpython
1019
1120jobs :
1221 rust_tests :
3847 uses : actions-rs/cargo@v1
3948 with :
4049 command : test
41- args : --verbose ${{ env.CARGO_ARGS }}
50+ args : --verbose ${{ env.CARGO_ARGS }} ${{ env.NON_WASM_PACKAGES }}
4251 - name : check compilation without threading
4352 uses : actions-rs/cargo@v1
4453 with :
@@ -124,7 +133,7 @@ jobs:
124133 uses : actions-rs/cargo@v1
125134 with :
126135 command : clippy
127- args : ${{ env.CARGO_ARGS }} -- -Dwarnings
136+ args : ${{ env.CARGO_ARGS }} ${{ env.NON_WASM_PACKAGES }} -- -Dwarnings
128137 - name : run clippy on wasm
129138 uses : actions-rs/cargo@v1
130139 with :
You can’t perform that action at this time.
0 commit comments