Skip to content

Commit

Permalink
Revert "Always test installation using azure pipelines"
Browse files Browse the repository at this point in the history
This reverts commit 69f2d10.
  • Loading branch information
torrentalle committed May 8, 2019
1 parent 69f2d10 commit 3597e20
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,18 @@ jobs:
- task: CopyFiles@2
inputs:
Contents: '*.vsix'
TargetFolder: $(Build.ArtifactStagingDirectory)
TargetFolder: 'package/'
OverWrite: true
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'package'
targetPath: 'package'
- job: Install_Windows
dependsOn: Test
condition: |
or (
eq(variables['Build.SourceBranch'], 'refs/heads/master'),
eq(variables['Build.Reason'], 'PullRequest') )
pool:
name: Hosted VS2017
demands: npm
Expand Down Expand Up @@ -93,6 +99,10 @@ jobs:
condition: always()
- job: Install_MacOS
dependsOn: Test
condition: |
or (
eq(variables['Build.SourceBranch'], 'refs/heads/master'),
eq(variables['Build.Reason'], 'PullRequest') )
pool:
name: Hosted macOS
demands: npm
Expand Down Expand Up @@ -132,6 +142,10 @@ jobs:
condition: always()
- job: Install_Linux
dependsOn: Test
condition: |
or (
eq(variables['Build.SourceBranch'], 'refs/heads/master'),
eq(variables['Build.Reason'], 'PullRequest') )
pool:
name: Hosted Ubuntu 1604
demands: npm
Expand Down

0 comments on commit 3597e20

Please sign in to comment.