Revert CROSVM_USE_SYSTEM_* build and CI changes

This setup is no longer needed since:
- The current build system and GPU backend
  integration have been restructured.
- CI now works with the virglrenderer crate.
- Environment variable overrides are no
  longer necessary to avoid CI failures.

Signed-off-by: Dorinda Bassey <dbassey@redhat.com>
This commit is contained in:
Dorinda Bassey 2025-10-20 14:08:17 +02:00 committed by Stefano Garzarella
parent 9f72a8187f
commit fc904aca8f

View File

@ -2,7 +2,7 @@
"tests": [
{
"test_name": "build-gnu",
"command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 RUSTFLAGS=\"-D warnings\" cargo build --release",
"command": "RUSTFLAGS=\"-D warnings\" cargo build --release",
"platform": [
"x86_64",
"aarch64",
@ -27,7 +27,7 @@
},
{
"test_name": "unittests-gnu",
"command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 cargo test --all-features --workspace",
"command": "cargo test --all-features --workspace",
"platform": [
"x86_64",
"aarch64",
@ -50,7 +50,7 @@
},
{
"test_name": "unittests-gnu-release",
"command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 cargo test --release --all-features --workspace",
"command": "cargo test --release --all-features --workspace",
"platform": [
"x86_64",
"aarch64",
@ -73,7 +73,7 @@
},
{
"test_name": "clippy",
"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",
"command": "cargo clippy --workspace --bins --examples --benches --all-features --all-targets -- -D warnings -D clippy::undocumented_unsafe_blocks",
"platform": [
"x86_64",
"aarch64",
@ -82,7 +82,7 @@
},
{
"test_name": "check-warnings",
"command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 RUSTFLAGS=\"-D warnings\" cargo check --all-targets --all-features --workspace",
"command": "RUSTFLAGS=\"-D warnings\" cargo check --all-targets --all-features --workspace",
"platform": [
"x86_64",
"aarch64",
@ -91,7 +91,7 @@
},
{
"test_name": "coverage",
"command": "CROSVM_USE_SYSTEM_VIRGLRENDERER=1 CROSVM_USE_SYSTEM_MINIGBM=1 pytest $(find . -type f -name \"test_coverage.py\")",
"command": "pytest $(find . -type f -name \"test_coverage.py\")",
"docker_plugin": {
"privileged": true
},