Skip to content

Commit f850f9d

Browse files
authored
Added GitVersion to automatically increment package and assembly version (#19)
***NO_CI*** the resulting commit of this PR needs to be tagged with the initial version before the CI pipeline can run * Added GitVersion * Updated publishFeedCredentials to use organisation-owned API key * Added contributing guidelines * Enabled code coverage
1 parent f0cfb15 commit f850f9d

File tree

5 files changed

+55
-13
lines changed

5 files changed

+55
-13
lines changed

CONTRIBUTING.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Contributing
2+
3+
Please first discuss the change you wish to make via an issue before making a change.
4+
5+
## Pull request process
6+
7+
1. Ensure that there are automated tests that cover any changes
8+
1. Update the README.md with details of any significant changes to functionality
9+
1. Ensure that your commit messages increment the version using [GitVersion syntax](https://gitversion.readthedocs.io/en/latest/input/docs/more-info/version-increments/). If no message is found then the patch version will be incremented by default.
10+
1. You may merge the pull request once it meets all of the required checks. If you do not have permision, a reviewer will do it for you

GitVersion.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mode: mainline

azure-pipelines.yml

+24-12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: $(GITVERSION_FullSemVer)
12
trigger:
23
batch: true
34
branches:
@@ -16,6 +17,17 @@ stages:
1617
- job: BuildJob
1718
displayName: Build
1819
steps:
20+
- task: gitversion/setup@0
21+
displayName: Install GitVersion
22+
inputs:
23+
versionSpec: '5.x'
24+
- task: gitversion/execute@0
25+
displayName: Execute GitVersion
26+
inputs:
27+
useConfigFile: true
28+
configFilePath: '$(Build.SourcesDirectory)\GitVersion.yml'
29+
updateAssemblyInfo: true
30+
updateAssemblyInfoFilename: '$(Build.SourcesDirectory)\bindings\src\Capgemini.PowerApps.SpecFlowBindings\Properties\AssemblyInfo.cs'
1931
- task: NuGetToolInstaller@1
2032
displayName: Install NuGet
2133
- task: NuGetCommand@2
@@ -38,9 +50,11 @@ stages:
3850
inputs:
3951
command: pack
4052
packagesToPack: bindings\src\Capgemini.PowerApps.SpecFlowBindings\Capgemini.PowerApps.SpecFlowBindings.csproj
41-
includeReferencedProjects: true
53+
includeReferencedProjects: false
4254
packDestination: '$(Build.ArtifactStagingDirectory)/out'
4355
configuration: $(buildConfiguration)
56+
versioningScheme: byEnvVar
57+
versionEnvVar: 'GitVersion.NuGetVersionV2'
4458
- publish: $(Build.ArtifactStagingDirectory)/out
4559
displayName: Publish NuGet artifact
4660
artifact: Capgemini.PowerApps.SpecFlowBindings
@@ -50,8 +64,8 @@ stages:
5064
- publish: bindings\tests\Capgemini.PowerApps.SpecFlowBindings.UiTests\bin\$(buildConfiguration)
5165
displayName: Publish tests
5266
artifact: tests
53-
- stage: UnitTest
54-
displayName: Unit test
67+
- stage: Test
68+
displayName: Test
5569
dependsOn: Build
5670
jobs:
5771
- job: UnitTestJob
@@ -80,10 +94,6 @@ stages:
8094
codeCoverageTool: Cobertura
8195
summaryFileLocation: '$(Pipeline.Workspace)/driver/coverage/cobertura/cobertura.xml'
8296
reportDirectory: '$(Pipeline.Workspace)/driver/coverage/html'
83-
- stage: UiTest
84-
displayName: UI Test
85-
dependsOn: Build
86-
jobs:
8797
- job: UiTestJob
8898
displayName: UI Test
8999
variables:
@@ -98,6 +108,8 @@ stages:
98108
inputs:
99109
uiTests: true
100110
runInParallel: true
111+
codeCoverageEnabled: true
112+
runSettingsFile: $(Pipeline.Workspace)\tests\CodeCoverage.runsettings
101113
testAssemblyVer2: |
102114
**\*UiTests.dll
103115
!**\*TestAdapter.dll
@@ -108,11 +120,11 @@ stages:
108120
POWERAPPS_SPECFLOW_BINDINGS_TEST_ADMIN_USERNAME: $(User ADO Integration Username)
109121
POWERAPPS_SPECFLOW_BINDINGS_TEST_ADMIN_PASSWORD: $(User ADO Integration Password)
110122
POWERAPPS_SPECFLOW_BINDINGS_TEST_URL: $(URL)
111-
- stage: PublishPackage
112-
displayName: Publish Package
123+
- stage: Publish
124+
displayName: Publish
113125
jobs:
114-
- job: PublishToNuGetGalleryJob
115-
displayName: Publish To NuGet Gallery
126+
- job: PublishJob
127+
displayName: Publish
116128
steps:
117129
- checkout: none
118130
- download: current
@@ -124,4 +136,4 @@ stages:
124136
command: push
125137
packagesToPush: '$(Pipeline.Workspace)/Capgemini.PowerApps.SpecFlowBindings/*.nupkg'
126138
nuGetFeedType: external
127-
publishFeedCredentials: NuGet
139+
publishFeedCredentials: Capgemini_UK

bindings/src/Capgemini.PowerApps.SpecFlowBindings/Capgemini.PowerApps.SpecFlowBindings.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<id>Capgemini.PowerApps.SpecFlowBindings</id>
55
<title>Power Apps SpecFlow Bindings</title>
66
<icon>images\icon.png</icon>
7-
<version>0.7.1-alpha</version>
7+
<version>0.1.0</version>
88
<description>A SpecFlow bindings library for Power Apps.</description>
99
<authors>Capgemini_UK, ewingjm</authors>
1010
<owners>Capgemini_UK, ewingjm</owners>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<RunSettings>
3+
<!-- Configurations for data collectors -->
4+
<DataCollectionRunSettings>
5+
<DataCollectors>
6+
<DataCollector friendlyName="Code Coverage" uri="datacollector://Microsoft/CodeCoverage/2.0" assemblyQualifiedName="Microsoft.VisualStudio.Coverage.DynamicCoverageDataCollector, Microsoft.VisualStudio.TraceCollector, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
7+
<Configuration>
8+
<CodeCoverage>
9+
<ModulePaths>
10+
<Include>
11+
<ModulePath>Capgemini.PowerApps.SpecFlowBindings.dll</ModulePath>
12+
</Include>
13+
</ModulePaths>
14+
</CodeCoverage>
15+
</Configuration>
16+
</DataCollector>
17+
</DataCollectors>
18+
</DataCollectionRunSettings>
19+
</RunSettings>

0 commit comments

Comments
 (0)