|
2 | 2 | "tests": [ |
3 | 3 | { |
4 | 4 | "test_name": "build-gnu", |
5 | | - "command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 RUSTFLAGS=\"-D warnings\" cargo build --release", |
| 5 | + "command": "RUSTFLAGS=\"-D warnings\" cargo build --release", |
6 | 6 | "platform": [ |
7 | 7 | "x86_64", |
8 | 8 | "aarch64", |
|
27 | 27 | }, |
28 | 28 | { |
29 | 29 | "test_name": "unittests-gnu", |
30 | | - "command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 cargo test --all-features --workspace", |
| 30 | + "command": "cargo test --all-features --workspace", |
31 | 31 | "platform": [ |
32 | 32 | "x86_64", |
33 | 33 | "aarch64", |
|
50 | 50 | }, |
51 | 51 | { |
52 | 52 | "test_name": "unittests-gnu-release", |
53 | | - "command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 cargo test --release --all-features --workspace", |
| 53 | + "command": "cargo test --release --all-features --workspace", |
54 | 54 | "platform": [ |
55 | 55 | "x86_64", |
56 | 56 | "aarch64", |
|
73 | 73 | }, |
74 | 74 | { |
75 | 75 | "test_name": "clippy", |
76 | | - "command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 cargo clippy --workspace --bins --examples --benches --all-features --all-targets -- -D warnings -D clippy::undocumented_unsafe_blocks", |
| 76 | + "command": "cargo clippy --workspace --bins --examples --benches --all-features --all-targets -- -D warnings -D clippy::undocumented_unsafe_blocks", |
77 | 77 | "platform": [ |
78 | 78 | "x86_64", |
79 | 79 | "aarch64", |
|
82 | 82 | }, |
83 | 83 | { |
84 | 84 | "test_name": "check-warnings", |
85 | | - "command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 RUSTFLAGS=\"-D warnings\" cargo check --all-targets --all-features --workspace", |
| 85 | + "command": "RUSTFLAGS=\"-D warnings\" cargo check --all-targets --all-features --workspace", |
86 | 86 | "platform": [ |
87 | 87 | "x86_64", |
88 | 88 | "aarch64", |
|
91 | 91 | }, |
92 | 92 | { |
93 | 93 | "test_name": "coverage", |
94 | | - "command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 pytest $(find . -type f -name \"test_coverage.py\")", |
| 94 | + "command": "pytest $(find . -type f -name \"test_coverage.py\")", |
95 | 95 | "docker_plugin": { |
96 | 96 | "privileged": true |
97 | 97 | }, |
|
0 commit comments