Skip to content

Commit

Permalink
Merge pull request #498 from bgurney-rh/fedora-karma-test-submodule
Browse files Browse the repository at this point in the history
fedora_karmatest: Use submodule for libcryptsetup-rs repo
  • Loading branch information
mulkieran committed Jan 3, 2024
2 parents d556897 + ef7893c commit aafd01c
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions fedora_karma_test/stratis_fedora_karmatest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,25 @@ 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
case $repo in
stratisd)
make clippy
make fmt-ci
make build-all-rust
;;
libcryptsetup-rs)
git submodule init
git submodule update
make clippy
make fmt-ci
make build
else
;;
*)
make clippy
make fmt-ci
make build-all-rust
fi
make build
;;
esac
cd ..
done

Expand Down

0 comments on commit aafd01c

Please sign in to comment.