Skip to content

Job and Task templates for Azure Pipelines to be used as a submodule or resource

License

Notifications You must be signed in to change notification settings

PoshCode/Azure-Pipelines

Repository files navigation

Job and Step Templates for Azure Build Pipelines

NOTE: These may be a little stale, because I'm not using them myself right now...

Usage

First configure a github service connection

You can use your existing endpoint connection, or add a new one. If you add a new one, consider using a generic name like "github" so forks can configure it the same way.

You can find this in your Project Settings under the Pipeline Service connections (i.e. https://dev.azure.com///_settings/adminservices) in Azure Devops. NOTE: Project settings is the gear in the bottom left corner of the UI as of April 2019!

In this example, I'm using the endpoint name github

Add this to the beginning of your azure-pipelines.yml

resources:
  repositories:
    - repository: poshcode
      type: github
      endpoint: github
      name: PoshCode/Azure-Pipelines
      ref: refs/tags/1.0.0

This will make the templates in this repository available in the poshcode namespace, so you can run use our GitVersion-job to version your builds by referencing the template GitVersion-job.yml@poshcode following these steps:

  1. Copy our GitVersion.yml into the root of your project. You can modify it, but be aware that as of GitVersion 4.0.0 there's a bug in the "Mainline" mode which requires you to manually specify the "increment" setting for each branch.

  2. Use the GitVersion version number in your build name. I use the InformationalVersion (which is the most verbose string), you could use SemVer instead...

name: $(Build.DefinitionName)_$(GitVersion_InformationalVersion)
  1. Call the template as the first job in your azure-pipelines:
jobs:
  - template: GitVersion-job.yml@poshcode
  1. Use the GitVersion.outputs in your build job by creating and using a variable:
  - job: Build
    dependsOn: GitVersion
    variables:
      SemVer: $[dependencies.GitVersion.outputs['GitVersion.SemVer']]
    steps:
    - powershell: Build-Module -SemVer $(SemVer) -Verbose
      displayName: 'Build-Module'

See the Azure docs for Templates and the YAML schema for more details.

About

Job and Task templates for Azure Pipelines to be used as a submodule or resource

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published