Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Azure DevOps time outs and display names. #5273

Merged
merged 3 commits into from
Feb 26, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ jobs:
echo TRAVIS_PULL_REQUEST_SLUG: $(TRAVIS_PULL_REQUEST_SLUG)
echo TRAVIS_PULL_REQUEST_SHA: $(TRAVIS_PULL_REQUEST_SHA)
echo PR_ONLY: $(PR_ONLY)
displayName: "Info"
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
- script: 'npm test -- test/syntax.js'
displayName: 'Syntax validation'

- job: "Semantic"
pool:
Expand All @@ -40,6 +42,7 @@ jobs:
inputs:
verbose: false
- script: 'node scripts/semanticValidation.js'
displayName: 'Semantic Validation'

- job: "ModelValidation"
pool:
Expand All @@ -50,17 +53,20 @@ jobs:
inputs:
verbose: false
- script: 'node scripts/modelValidation.js'
displayName: 'Model Validation'

- job: "BreakingChange"
pool:
vmImage: 'Ubuntu 16.04'
steps:
- script: 'scripts/install-dotnet.sh'
displayName: 'Insall .Net'
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
- script: 'node scripts/breaking-change.js'
displayName: 'Breaking Changes'

- job: "LintDiff"
variables:
Expand All @@ -73,9 +79,12 @@ jobs:
inputs:
verbose: false
- script: 'scripts/install-dotnet.sh'
displayName: 'install .Net'
- script: 'node scripts/momentOfTruth.js && node scripts/momentOfTruthPostProcessing.js'
displayName: 'LintDiff'

- job: "SDK"
timeoutInMinutes: 120

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh wow, just curious is there a sample of something that comes even close to 2 hours ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, Network #5266

strategy:
matrix:
ruby:
Expand All @@ -100,3 +109,4 @@ jobs:
vmImage: 'Ubuntu 16.04'
steps:
- script: "scripts/swagger-to-sdk.sh Azure/$(AZURE_SDK_REPO) -v $(AZURE_SDK_PARAMS)"
displayName: "Swagger to SDK script"