I’ve tried the approach described in this tutorial (https://medium.com/@bitrise/start-multiple-builds-with-the-same-trigger-on-bitrise-1d46ca847b9e), but it appears to be not working for me. Here are my steps:
- After build_router_start step, I’ve printed the value of SOURCE_BITRISE_BUILD_NUMBER env var in a script step and it’s just empty string:
echo “SOURCE_BITRISE_BUILD_NUMBER: ${SOURCE_BITRISE_BUILD_NUMBER}”
result: ‘’
- And the concurrent dependent build has the incremented version. I mean, triggered build has 172 build number and the concurrent one is 173…
As far as I understood the SOURCE_BITRISE_BUILD_NUMBER should have value and its value should be shared for both builds as the build number. Am I got it right?