-
Notifications
You must be signed in to change notification settings - Fork 658
Closed
Labels
Description
Hi,
I am getting different versions when running:
- an incorrect version using a linux docker image in version 5.0.0 or 5.0.1 with my repo mounted
- a correct version using the gitversion binary (installed through brew - version 4.0.0+Branch.master.Sha.e715eb5dd515037d90a257f527e62442cae8c1c5)
- a correct version using a linux docker image in version 4.0.1-beta1-65-linux-debian-net472
GitVersion.yaml
$ cat GitVersion.yml
mode: ContinuousDelivery
branches:
master:
regex: (stable|master)$
ignore:
sha: []
The commit in question is a merge commit from master (called stable here) to develop (called dev here).
commit 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 (tag: v0.1.0, origin/stable, stable)
Merge: 49af14447 f7bd7dda1
Author: Max Mustermann <[email protected]>
Date: 6 days ago
Merge branch 'release-0.1.0'
Basically it looks like it that the linux image is using the 49af14447
which is very old (1374 commits ago), whereas the 4.0.x versions are using 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
which is where the tag happens (52 commits ago).
First the MacOS log:
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:23] Working directory: /Users/sboardwell/projects/my-company/my-project
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:26] IsDynamicGitRepository: False
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:28] Returning Project Root from DotGitDirectory: /Users/sboardwell/projects/my-company/my-project/.git - /Users/sboardwell/projects/my-company/my-project
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:28] Running on Mono.
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:28] IsDynamicGitRepository: False
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:28] Returning Project Root from DotGitDirectory: /Users/sboardwell/projects/my-company/my-project/.git - /Users/sboardwell/projects/my-company/my-project
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:28] Project root is: /Users/sboardwell/projects/my-company/my-project
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:28] DotGit directory is: /Users/sboardwell/projects/my-company/my-project/.git
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:41] IsDynamicGitRepository: False
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:41] Returning Project Root from DotGitDirectory: /Users/sboardwell/projects/my-company/my-project/.git - /Users/sboardwell/projects/my-company/my-project
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:44] IsDynamicGitRepository: False
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:44] Returning Project Root from DotGitDirectory: /Users/sboardwell/projects/my-company/my-project/.git - /Users/sboardwell/projects/my-company/my-project
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:53] Using latest commit on specified branch
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:54] No branch configuration found for branch move-fetch-tags-to-gitversion-block, falling back to default configuration
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:54] Begin: Attempting to inherit branch configuration from parent branch
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:60] Begin: Finding branch source of 'move-fetch-tags-to-gitversion-block'
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:62] Begin: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'dev'.
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:63] Found merge base of b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] Merge base of move-fetch-tags-to-gitversion-block' and 'dev is b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] End: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'dev'. (Took: 42.48ms)
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] Begin: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'stable'.
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] Found merge base of 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] Merge base of move-fetch-tags-to-gitversion-block' and 'stable is 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] End: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'stable'. (Took: 1.71ms)
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] Begin: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'origin/dev'.
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] Found merge base of b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] Merge base of move-fetch-tags-to-gitversion-block' and 'origin/dev is b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] End: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'origin/dev'. (Took: 1.64ms)
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] Begin: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'origin/stable'.
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] Found merge base of 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] Merge base of move-fetch-tags-to-gitversion-block' and 'origin/stable is 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:67] End: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'origin/stable'. (Took: 1.69ms)
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:68] Multiple source branches have been found, picking the first one (dev).
This may result in incorrect commit counting.
Options were:
dev, origin/dev, stable, origin/stable
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:68] End: Finding branch source of 'move-fetch-tags-to-gitversion-block' (Took: 84.78ms)
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:68] Begin: Getting branches containing the commit 'b54ba7fe5e46fe2da2091afbfc061facf80f91e5'.
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:68] Trying to find direct branches.
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:68] Direct branch found: 'dev'.
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:68] End: Getting branches containing the commit 'b54ba7fe5e46fe2da2091afbfc061facf80f91e5'. (Took: 1.75ms)
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:68] Found possible parent branches: dev
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:68] End: Attempting to inherit branch configuration from parent branch (Took: 145.91ms)
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:78] Running against branch: move-fetch-tags-to-gitversion-block (b29678a5423c578e8440f7918d559120017cd7f0)
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:79] Begin: Calculating base versions
2019-08-06 22:18:56 INFO [08/06/19 22:18:56:80] Fallback base version: 0.1.0 with commit count source 742c2fe8533ce51739dcaef50df4f2be96555e1d (Incremented: None)
2019-08-06 22:18:57 INFO [08/06/19 22:18:57:14] Git tag 'v0.1.0': 0.1.0 with commit count source 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 (Incremented: 0.2.0)
2019-08-06 22:18:57 INFO [08/06/19 22:18:57:16] Merge message 'Merge branch 'release-0.1.0'': 0.1.0 with commit count source 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 (Incremented: 0.2.0)
2019-08-06 22:18:57 INFO [08/06/19 22:18:57:40] Found multiple base versions which will produce the same SemVer (0.2.0), taking oldest source for commit counting (Merge message 'Merge branch 'release-0.1.0'')
2019-08-06 22:18:57 INFO [08/06/19 22:18:57:40] Base version used: Merge message 'Merge branch 'release-0.1.0'': 0.1.0 with commit count source 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 (Incremented: 0.2.0)
2019-08-06 22:18:57 INFO [08/06/19 22:18:57:40] End: Calculating base versions (Took: 612.83ms)
2019-08-06 22:18:57 INFO [08/06/19 22:18:57:40] 52 commits found between 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 and b29678a5423c578e8440f7918d559120017cd7f0
2019-08-06 22:18:57 INFO [08/06/19 22:18:57:40] Using branch name to calculate version tag
2019-08-06 22:18:57 INFO [08/06/19 22:18:57:40] Begin: Getting version tags from branch 'refs/heads/move-fetch-tags-to-gitversion-block'.
2019-08-06 22:18:57 INFO [08/06/19 22:18:57:62] End: Getting version tags from branch 'refs/heads/move-fetch-tags-to-gitversion-block'. (Took: 218.79ms)
The 4.0 docker image:
2019-08-06 20:58:32 INFO [08/06/19 20:58:32:93] Working directory: /repo
2019-08-06 20:58:32 INFO [08/06/19 20:58:32:97] IsDynamicGitRepository: False
2019-08-06 20:58:33 INFO [08/06/19 20:58:33:05] Returning Project Root from DotGitDirectory: /repo/.git - /repo
2019-08-06 20:58:33 INFO [08/06/19 20:58:33:06] Running on Mono.
2019-08-06 20:58:33 INFO [08/06/19 20:58:33:07] IsDynamicGitRepository: False
2019-08-06 20:58:33 INFO [08/06/19 20:58:33:08] Returning Project Root from DotGitDirectory: /repo/.git - /repo
2019-08-06 20:58:33 INFO [08/06/19 20:58:33:08] Project root is: /repo
2019-08-06 20:58:33 INFO [08/06/19 20:58:33:09] DotGit directory is: /repo/.git
2019-08-06 20:58:40 INFO [08/06/19 20:58:40:67] IsDynamicGitRepository: False
2019-08-06 20:58:40 INFO [08/06/19 20:58:40:68] Returning Project Root from DotGitDirectory: /repo/.git - /repo
2019-08-06 20:58:40 INFO [08/06/19 20:58:40:85] IsDynamicGitRepository: False
2019-08-06 20:58:40 INFO [08/06/19 20:58:40:86] Returning Project Root from DotGitDirectory: /repo/.git - /repo
2019-08-06 20:58:41 INFO [08/06/19 20:58:41:21] Using latest commit on specified branch
2019-08-06 20:58:41 INFO [08/06/19 20:58:41:29] No branch configuration found for branch move-fetch-tags-to-gitversion-block, falling back to default configuration
2019-08-06 20:58:41 INFO [08/06/19 20:58:41:30] Begin: Attempting to inherit branch configuration from parent branch
2019-08-06 20:58:45 INFO [08/06/19 20:58:45:80] Begin: Finding branch source of 'move-fetch-tags-to-gitversion-block'
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:60] Begin: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'dev'.
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:63] Found merge base of b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:67] Merge base of move-fetch-tags-to-gitversion-block' and 'dev is b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:68] End: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'dev'. (Took: 72.07ms)
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:68] Begin: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'stable'.
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:72] Found merge base of 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:73] Merge base of move-fetch-tags-to-gitversion-block' and 'stable is 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:73] End: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'stable'. (Took: 45.94ms)
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:73] Begin: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'origin/dev'.
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:74] Found merge base of b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:74] Merge base of move-fetch-tags-to-gitversion-block' and 'origin/dev is b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:75] End: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'origin/dev'. (Took: 13.50ms)
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:75] Begin: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'origin/stable'.
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:76] Found merge base of 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:76] Merge base of move-fetch-tags-to-gitversion-block' and 'origin/stable is 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:77] End: Finding merge base between 'move-fetch-tags-to-gitversion-block' and 'origin/stable'. (Took: 17.11ms)
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:80] Multiple source branches have been found, picking the first one (dev).
This may result in incorrect commit counting.
Options were:
dev, origin/dev, stable, origin/stable
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:80] End: Finding branch source of 'move-fetch-tags-to-gitversion-block' (Took: 2,002.08ms)
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:81] Begin: Getting branches containing the commit 'b54ba7fe5e46fe2da2091afbfc061facf80f91e5'.
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:81] Trying to find direct branches.
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:82] Direct branch found: 'dev'.
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:83] End: Getting branches containing the commit 'b54ba7fe5e46fe2da2091afbfc061facf80f91e5'. (Took: 20.17ms)
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:83] Found possible parent branches: dev
2019-08-06 20:58:47 INFO [08/06/19 20:58:47:84] End: Attempting to inherit branch configuration from parent branch (Took: 6,536.37ms)
2019-08-06 20:58:51 INFO [08/06/19 20:58:51:83] Running against branch: move-fetch-tags-to-gitversion-block (b29678a5423c578e8440f7918d559120017cd7f0)
2019-08-06 20:58:51 INFO [08/06/19 20:58:51:85] Begin: Calculating base versions
2019-08-06 20:58:51 INFO [08/06/19 20:58:51:97] Fallback base version: 0.1.0 with commit count source 742c2fe8533ce51739dcaef50df4f2be96555e1d (Incremented: None)
2019-08-06 20:58:56 INFO [08/06/19 20:58:56:36] Git tag 'v0.1.0': 0.1.0 with commit count source 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 (Incremented: 0.2.0)
2019-08-06 20:58:56 INFO [08/06/19 20:58:56:45] Merge message 'Merge branch 'release-0.1.0'': 0.1.0 with commit count source 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 (Incremented: 0.2.0)
2019-08-06 20:59:02 INFO [08/06/19 20:59:02:48] Found multiple base versions which will produce the same SemVer (0.2.0), taking oldest source for commit counting (Merge message 'Merge branch 'release-0.1.0'')
2019-08-06 20:59:02 INFO [08/06/19 20:59:02:49] Base version used: Merge message 'Merge branch 'release-0.1.0'': 0.1.0 with commit count source 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 (Incremented: 0.2.0)
2019-08-06 20:59:02 INFO [08/06/19 20:59:02:49] End: Calculating base versions (Took: 10,636.24ms)
2019-08-06 20:59:02 INFO [08/06/19 20:59:02:51] 52 commits found between 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 and b29678a5423c578e8440f7918d559120017cd7f0
2019-08-06 20:59:02 INFO [08/06/19 20:59:02:52] Using branch name to calculate version tag
2019-08-06 20:59:02 INFO [08/06/19 20:59:02:52] Begin: Getting version tags from branch 'refs/heads/move-fetch-tags-to-gitversion-block'.
2019-08-06 20:59:07 INFO [08/06/19 20:59:07:08] End: Getting version tags from branch 'refs/heads/move-fetch-tags-to-gitversion-block'. (Took: 4,555.42ms)
The 5.0.x docker image:
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:85] Working directory: /home/jenkins/workspace/europa_PR-1512
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:85] IsDynamicGitRepository: False
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:87] Returning Project Root from DotGitDirectory: /home/jenkins/workspace/europa_PR-1512/.git - /home/jenkins/workspace/europa_PR-1512
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:87] Running on Windows.
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:88] Applicable build agent found: 'Jenkins'.
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:88] Branch from build environment:
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:88] Begin: Normalizing git directory for branch ''
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:93] One remote found (origin -> 'https://github.com/Datameer-Inc/europa.git').
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:95] Skipping fetching, if GitVersion does not calculate your version as expected you might need to allow fetching or use dynamic repositories
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:98] Skipping update of 'refs/remotes/origin/dev' as it already matches the remote ref.
2019-08-06 19:27:04 INFO [08/06/19 19:27:04:99] Skipping update of 'refs/remotes/origin/move-fetch-tags-to-gitversion-block' as it already matches the remote ref.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:00] Skipping update of 'refs/remotes/origin/stable' as it already matches the remote ref.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:00] HEAD points at branch 'refs/heads/PR-1512'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:00] End: Normalizing git directory for branch '' (Took: 123.33ms)
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:00] IsDynamicGitRepository: False
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:00] Returning Project Root from DotGitDirectory: /home/jenkins/workspace/europa_PR-1512/.git - /home/jenkins/workspace/europa_PR-1512
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:00] Project root is: /home/jenkins/workspace/europa_PR-1512
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:00] DotGit directory is: /home/jenkins/workspace/europa_PR-1512/.git
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:05] IsDynamicGitRepository: False
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:05] Returning Project Root from DotGitDirectory: /home/jenkins/workspace/europa_PR-1512/.git - /home/jenkins/workspace/europa_PR-1512
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:05] IsDynamicGitRepository: False
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:05] Returning Project Root from DotGitDirectory: /home/jenkins/workspace/europa_PR-1512/.git - /home/jenkins/workspace/europa_PR-1512
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:23] Using latest commit on specified branch
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:26] Begin: Attempting to inherit branch configuration from parent branch
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:29] Begin: Finding branch source of 'PR-1512'
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:33] Begin: Finding merge base between 'PR-1512' and 'dev'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:34] Found merge base of b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:35] Merge base of PR-1512' and 'dev is b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:35] End: Finding merge base between 'PR-1512' and 'dev'. (Took: 26.87ms)
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] Begin: Finding merge base between 'PR-1512' and 'origin/stable'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] Found merge base of b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] Merge base of PR-1512' and 'origin/stable is b54ba7fe5e46fe2da2091afbfc061facf80f91e5
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] End: Finding merge base between 'PR-1512' and 'origin/stable'. (Took: 0.90ms)
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] Begin: Finding merge base between 'PR-1512' and 'stable'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] Found merge base of 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] Merge base of PR-1512' and 'stable is 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] End: Finding merge base between 'PR-1512' and 'stable'. (Took: 0.92ms)
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] Begin: Finding merge base between 'PR-1512' and 'origin/stable'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] Found merge base of 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] Merge base of PR-1512' and 'origin/stable is 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:36] End: Finding merge base between 'PR-1512' and 'origin/stable'. (Took: 0.30ms)
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:38] Multiple source branches have been found, picking the first one (dev).
This may result in incorrect commit counting.
Options were:
dev, origin/stable, stable, origin/stable
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:38] End: Finding branch source of 'PR-1512' (Took: 83.23ms)
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:38] Begin: Getting branches containing the commit 'b54ba7fe5e46fe2da2091afbfc061facf80f91e5'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:38] Trying to find direct branches.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:38] No direct branches found, searching through tracked branches.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:38] Searching for commits reachable from 'origin/stable'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:39] The branch 'origin/stable' has a matching commit.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:39] Searching for commits reachable from 'stable'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:41] The branch 'stable' has no matching commits.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:41] Searching for commits reachable from 'origin/dev'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:41] The branch 'origin/dev' has a matching commit.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:41] Searching for commits reachable from 'origin/stable'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:44] The branch 'origin/stable' has no matching commits.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:44] End: Getting branches containing the commit 'b54ba7fe5e46fe2da2091afbfc061facf80f91e5'. (Took: 59.17ms)
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:44] Begin: Getting branches containing the commit 'b29678a5423c578e8440f7918d559120017cd7f0'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:44] Trying to find direct branches.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:44] No direct branches found, searching through tracked branches.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:44] Searching for commits reachable from 'origin/stable'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:47] The branch 'origin/stable' has no matching commits.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:47] Searching for commits reachable from 'stable'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:49] The branch 'stable' has no matching commits.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:49] Searching for commits reachable from 'origin/dev'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:51] The branch 'origin/dev' has no matching commits.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:51] Searching for commits reachable from 'origin/stable'.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:54] The branch 'origin/stable' has no matching commits.
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:54] End: Getting branches containing the commit 'b29678a5423c578e8440f7918d559120017cd7f0'. (Took: 98.10ms)
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:54] Found possible parent branches: origin/stable, origin/dev
2019-08-06 19:27:05 WARN [08/06/19 19:27:05:55] Failed to inherit Increment branch configuration, ended up with: origin/stable, origin/dev
Falling back to dev branch config
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:56] End: Attempting to inherit branch configuration from parent branch (Took: 299.16ms)
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:64] Running against branch: PR-1512 (b29678a5423c578e8440f7918d559120017cd7f0)
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:65] Begin: Calculating base versions
2019-08-06 19:27:05 INFO [08/06/19 19:27:05:69] Fallback base version: 0.1.0 with commit count source 742c2fe8533ce51739dcaef50df4f2be96555e1d (Incremented: None)
2019-08-06 19:27:06 INFO [08/06/19 19:27:06:20] Git tag 'v0.1.0': 0.1.0 with commit count source 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 (Incremented: 0.2.0)
2019-08-06 19:27:06 INFO [08/06/19 19:27:06:33] Merge message 'Merge branch 'release-0.1.0'': 0.1.0 with commit count source 0bcfa2d4ffc4fafcca3a4b09ee80721ca7fccef9 (Incremented: 0.2.0)
2019-08-06 19:27:06 INFO [08/06/19 19:27:06:40] Found multiple base versions which will produce the same SemVer (0.2.0), taking oldest source for commit counting (Merge message 'Merge branch 'release-0.1.0'')
2019-08-06 19:27:06 INFO [08/06/19 19:27:06:42] Base version used: Merge message 'Merge branch 'release-0.1.0'': 0.1.0 with commit count source 49af1444722302a6ff4a16e97d59bec5745bf052 (Incremented: 0.2.0)
2019-08-06 19:27:06 INFO [08/06/19 19:27:06:42] End: Calculating base versions (Took: 776.45ms)
2019-08-06 19:27:06 INFO [08/06/19 19:27:06:46] 1374 commits found between 49af1444722302a6ff4a16e97d59bec5745bf052 and b29678a5423c578e8440f7918d559120017cd7f0
2019-08-06 19:27:06 INFO [08/06/19 19:27:06:46] Begin: Getting version tags from branch 'refs/heads/PR-1512'.
2019-08-06 19:27:06 INFO [08/06/19 19:27:06:83] End: Getting version tags from branch 'refs/heads/PR-1512'. (Took: 363.86ms)