Skip to content

Commit

Permalink
fix: use netcore build
Browse files Browse the repository at this point in the history
  • Loading branch information
Kieranties committed Jul 29, 2020
1 parent bdc4654 commit bd65f97
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 38 deletions.
13 changes: 0 additions & 13 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
# GitVersion.yml
mode: ContinuousDelivery
next-version: 3.0
branches:
feature:
regex: ^features?[/-](^netcore)
netcore:
regex: '^feature/netcore$'
mode: ContinuousDeployment
tag: netcore
increment: Inherit
prevent-increment-of-merged-branch-version: true
track-merge-target: false
tracks-release-branches: false
is-release-branch: false
source-branches: [ 'master' ]
ignore:
sha: []
27 changes: 2 additions & 25 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ trigger:
include:
- master
- develop
- feature/netcore
tags:
include:
- v*
Expand All @@ -19,7 +18,6 @@ pr:
- develop
- master
- release/*
- feature/netcore
paths:
exclude:
- '*.md'
Expand All @@ -35,7 +33,7 @@ pool:
vmImage: 'windows-latest'

variables:
- group: nuget
- group: nuget
- name: testFolderPath
value: '$(Build.SourcesDirectory)/test'
- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE
Expand All @@ -55,28 +53,7 @@ steps:
env:
NUGET_KEY: $(nuget.key)

- template: crawler.default.build.yml@templates
- template: crawler.netcore.build.yml@templates

- template: documentation.publish.yml@templates

- task: DotNetCoreCLI@2
displayName: 'Create Netcore NuGet packages'
condition: and ( succeeded(), in(variables['Build.SourceBranch'], 'refs/heads/feature/netcore'))
inputs:
command: 'pack'
packagesToPack: 'src/**/*.csproj'
packDirectory: '$(Build.ArtifactStagingDirectory)/nuget'
versioningScheme: 'byEnvVar'
versionEnvVar: GITVERSION_SEMVER
includeSymbols: true
nugetConfigPath: nuget.config

- task: NuGetCommand@2
displayName: 'Push Netcore to develop feed'
condition: and ( succeeded(), in(variables['Build.SourceBranch'], 'refs/heads/feature/netcore'))
inputs:
command: 'push'
packagesToPush: '$(Build.ArtifactStagingDirectory)/nuget/**/*.nupkg'
allowPackageConflicts: true
publishVstsFeed: 'develop'
includeSymbols: true
2 changes: 2 additions & 0 deletions docs/3.0.0-release-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
### Features
+ Support netcore and CluedIn 3.0.0+

0 comments on commit bd65f97

Please sign in to comment.