1
0
mirror of https://github.com/kata-containers/kata-containers.git synced 2025-04-29 20:24:31 +00:00

runtime-rs: Ensure static-checks-build is a dep of make test

Otherwise `make test` will simply fail with:
```
error[E0583]: file not found for module `config`
```

Fixes:  -- part 0

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio 2023-09-15 18:15:53 +02:00
parent 2bc3a616ae
commit 08f2e5ae0b

View File

@ -49,7 +49,7 @@ else
##TARGET default: build code
default: runtime show-header
##TARGET test: run cargo tests
test:
test: static-checks-build
@cargo test --all --target $(TRIPLE) $(EXTRA_RUSTFEATURES) -- --nocapture
install: install-runtime install-configs
endif