1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-28 02:16:09 +02:00
youki/scripts/features_test.sh
Silcet 289e71f73d
Included test for the features
Signed-off-by: Silcet <camorga1@gmail.com>
2022-11-17 17:41:50 +01:00

19 lines
616 B
Bash
Executable File

#!/bin/bash
set -eu
# Build the different features individually
cargo build --no-default-features -F v1
cargo build --no-default-features -F v2
cargo build --no-default-features -F systemd
cargo build --no-default-features -F v2 -F cgroupsv2_devices
cargo build --no-default-features -F systemd -F cgroupsv2_devices
# Test the different features individually
cargo test --no-default-features -F v1
cargo test --no-default-features -F v2
cargo test --no-default-features -F systemd
cargo test --no-default-features -F v2 -F cgroupsv2_devices
cargo test --no-default-features -F systemd -F cgroupsv2_devices
exit 0