diff --git a/fedora_karma_test/stratis_fedora_karmatest.sh b/fedora_karma_test/stratis_fedora_karmatest.sh new file mode 100644 index 0000000..32a7ba9 --- /dev/null +++ b/fedora_karma_test/stratis_fedora_karmatest.sh @@ -0,0 +1,21 @@ +#!/bin/bash +set -e +set -x + +for repo in stratisd devicemapper-rs libcryptsetup-rs libblkid-rs; do + echo $repo + git clone https://github.com/stratis-storage/$repo + cd $repo + if [ $repo != 'stratisd' ]; then + make clippy + make fmt-ci + make build + else + make clippy + make fmt-ci + make build-all-rust + fi + cd .. +done + +echo "All tests completed."