1
0
Fork 0

increase probability of gc on win

This commit is contained in:
Mikhail Goncharov 2023-01-09 10:40:41 +01:00
parent 76d6f29154
commit 23eb634e9c

View file

@ -13,7 +13,7 @@
# limitations under the License.
# As git gc takes non-trivial time on windows, run it only 5% of the time.
if (( Get-Random -Maximum 100 ) -lt 5 ) {
if (( Get-Random -Maximum 100 ) -lt 10 ) {
echo "running git gc"
pwd
git gc