Hi,
we use TravisCI with Gitlab (pretty sure if it’s specific to that platform) and I’ve just noticed a weird (quite minor but still annoying) bug. If I push several branches with git (something like git push origin 2.12.x 2.13.x 2.14.x
) the corresponding branches are not build. However if I push each branch individually (git push origin 2.12.x ; git push origin 2.13.x ; git push origin 2.14.x
), then everything is working fine.
Cheers