Skip to content

Commit

Permalink
ci: add build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
rdavisau committed Feb 17, 2021
1 parent fa10e97 commit c8d873c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions build/build.yml
@@ -0,0 +1,22 @@
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml

trigger:
- main

pool:
vmImage: 'macos-latest'

steps:

- task: CmdLine@2
inputs:
script: 'build/build.sh'

- task: PublishPipelineArtifact@1
inputs:
targetPath: 'output'
artifact: 'output'
publishLocation: 'pipeline'

0 comments on commit c8d873c

Please sign in to comment.