islet-project / islet

An on-device confidential computing platform
Apache License 2.0
91 stars 16 forks source link

ci: Use depth 1 when syncing assets for speeding up #321

Closed zpzigi754 closed 4 months ago

zpzigi754 commented 4 months ago

This is a minor PR for speeding up ci tests as well as reducing overall disk consumption.

(in scripts/deps/assets.sh)

[before]
cd $ROOT && git submodule update --init assets

[after]
cd $ROOT && git submodule update --init --depth 1 assets