Reputation: 1228
I have many private repositories at Bitbucket, there are about 100 repo's (+/-). Time to build them by php bin/satis build
takes a long time, somewhere about 3 minutes. How can i refresh one repository or optimize time of building. Because i saw some satis configuration, where config.json
file contain more than 4000 repositories. I can not imagine how many time need to build all of this.
Upvotes: 2
Views: 1312
Reputation: 41766
The more private repos you have, the longer Satis will need to build the static archive.
"require-all": true
to manually listing the repos and specific versions (beware: this is tedious to maintain, but fast)skip-dev
, when generating archives
(to skip branches)Upvotes: 3