Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
Fred-sun committed May 28, 2020
1 parent 57e7039 commit 72bbc7a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
4 changes: 0 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,4 @@ steps:
scriptSource: 'inline'
script: |
print('Hello world 1')
pirnt($(Build.Repository.LocalPath))
print($(Build.Repository.ID))
print($(Build.Repository.Name))
print($(Build.Repository.Provider))
print('Hello world 2')
31 changes: 31 additions & 0 deletions azure-pipelines.yml_bac
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 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:
- master

pool:
vmImage: 'ubuntu-latest'

steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'

- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'


- task: PythonScript@0
inputs:
scriptSource: 'inline'
script: |
print('Hello world 1')
pirnt($(Build.Repository.LocalPath))
print($(Build.Repository.ID))
print($(Build.Repository.Name))
print($(Build.Repository.Provider))
print('Hello world 2')

0 comments on commit 72bbc7a

Please sign in to comment.