Skip to content

Commit

Permalink
reset ci (#3507)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenshuai2144 committed Feb 8, 2019
1 parent 178c48d commit 1e996d8
Showing 1 changed file with 6 additions and 20 deletions.
26 changes: 6 additions & 20 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,23 @@ name: ant design pro
trigger:
- master

resources:
repositories:
- repository: self
fetchDepth: 1

jobs:
- job: lintAndBuild

pool:
vmImage: 'Ubuntu-16.04'

steps:
- checkout: self
clean: false
- script: yarn install
displayName: install
- script: npm run lint
displayName: lint
- script: npm run build
env:
PROGRESS: none
displayName: build

- job: test
Expand All @@ -34,23 +35,15 @@ jobs:
options: '-u root'

steps:
- checkout: self
fetchDepth: 1
clean: false
- script: yarn install
displayName: install
- script: npm run test:all
env:
PROGRESS: none
displayName: test

- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- checkout: self
fetchDepth: 1
clean: false
- task: NodeTool@0
inputs:
versionSpec: '11.x'
Expand All @@ -59,25 +52,18 @@ jobs:
- script: npm run lint
displayName: lint
- script: npm run build
env:
PROGRESS: none
displayName: build

- job: MacOS
pool:
vmImage: 'macOS-10.13'
steps:
- checkout: self
fetchDepth: 1
clean: false
- task: NodeTool@0
inputs:
versionSpec: '11.x'
- script: yarn install
displayName: install
- script: npm run lint
displayName: lint
- script: npm run
env:
PROGRESS: none
- script: npm run build
displayName: build

0 comments on commit 1e996d8

Please sign in to comment.