Skip to content

Commit 851b2ff

Browse files
authored
Merge pull request #13 from CDOT-CV/azure-pipeline
Set up CI with Azure Pipelines
2 parents d35f938 + c628262 commit 851b2ff

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

azure-pipelines.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Starter pipeline
2+
# Start with a minimal pipeline that you can customize to build and deploy your code.
3+
# Add steps that build, run tests, deploy, and more:
4+
# https://aka.ms/yaml
5+
6+
trigger:
7+
branches:
8+
include:
9+
- develop
10+
paths:
11+
include:
12+
- 'jikkou/*'
13+
- 'kafka-connect/*'
14+
15+
pool:
16+
vmImage: ubuntu-latest
17+
18+
steps:
19+
- task: CopyFiles@2
20+
inputs:
21+
SourceFolder: '.'
22+
Contents: '**'
23+
TargetFolder: '$(Build.ArtifactStagingDirectory)'
24+
25+
# Publish the artifacts directory for consumption in publish pipeline
26+
- task: PublishBuildArtifacts@1
27+
inputs:
28+
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
29+
ArtifactName: 'jpo-utils-services'
30+
publishLocation: 'Container'

0 commit comments

Comments
 (0)