Skip to content

Commit

Permalink
ci: fix template repo references
Browse files Browse the repository at this point in the history
  • Loading branch information
calebcartwright committed Jun 13, 2019
1 parent 4342ec3 commit 95eb9c5
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .azure-pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ resources:
endpoint: swellaby

steps:
- template: 'templates/yml/python/combo/invoke-lint-format-test.yml'
- template: templates/yml/python/combo/invoke-lint-format-test.yml@templates
4 changes: 2 additions & 2 deletions .azure-pipelines/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ resources:
endpoint: swellaby

steps:
- template: '../templates/yml/python/combo/setup-pip.yml'
- template: '../templates/yml/python/steps/run-invoke.yml'
- template: templates/yml/python/combo/setup-pip.yml@templates
- template: templates/yml/python/steps/run-invoke.yml@templates
parameters:
tasksAndArguments: 'lint'
taskDisplayName: 'Lint'
11 changes: 9 additions & 2 deletions .azure-pipelines/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@ pr:
pool:
vmImage: 'Ubuntu-16.04'

resources:
repositories:
- repository: templates
type: github
name: swellaby/azure-pipelines-templates
endpoint: swellaby

steps:
- template: '../templates/yml/python/combo/setup-pip.yml'
- template: '../templates/yml/python/combo/run-pytest-ci.yml'
- template: templates/yml/python/combo/setup-pip.yml@templates
- template: templates/yml/python/combo/run-pytest-ci.yml@templates

- task: SonarSource.sonarcloud.14d9cde6-c1da-4d55-aa01-2965cd301255.SonarCloudPrepare@1
displayName: 'Prepare analysis on SonarCloud'
Expand Down
11 changes: 9 additions & 2 deletions .azure-pipelines/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ pr:
pool:
vmImage: 'Ubuntu-16.04'

resources:
repositories:
- repository: templates
type: github
name: swellaby/azure-pipelines-templates
endpoint: swellaby

steps:
- template: '../templates/yml/python/combo/setup-pip.yml'
- template: '../templates/yml/python/combo/run-pytest-ci.yml'
- template: templates/yml/python/combo/setup-pip.yml@templates
- template: templates/yml/python/combo/run-pytest-ci.yml@templates

0 comments on commit 95eb9c5

Please sign in to comment.