Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b9af865
Generated from 36bd571935c333e78d122b05c06cd5cf8bd4eb6b (#4650)
openapi-sdkautomation[bot] Jul 30, 2019
d364372
add pull config
Aug 14, 2019
81b0d20
Optimize checkout (#4982)
mitchdenny Aug 14, 2019
3527f66
Prep for splitting keyvault ci. (#4984)
mitchdenny Aug 14, 2019
ecef167
Generated from 36bd571935c333e78d122b05c06cd5cf8bd4eb6b (#4650)
openapi-sdkautomation[bot] Jul 30, 2019
f0d99d4
Merge branch 'sdkAutomation/datamigration/resource-manager/v2018_03_3…
Aug 14, 2019
8edbcd8
Datamigration: update package 2018-07-15-preview. (#4937)
yaohaizh Aug 14, 2019
5be7f5b
ContainerService: genereate v2019_06_01 (#4990)
yaohaizh Aug 14, 2019
aac8a96
Merge pull request #116 from Azure/master
pull[bot] Aug 14, 2019
5c28f74
Disable Jetty by default. (#4964)
mitchdenny Aug 14, 2019
df4c310
Update package groups and add description in pom.xml for client libra…
srnagar Aug 14, 2019
f8085c9
Event Hubs: Synchronous APIs Part 2 (#4970)
conniey Aug 14, 2019
baf1f47
Split the eventhubs client and data pipelines. (#4995)
mitchdenny Aug 14, 2019
484e9a4
Add null check to fix spotbugs warning. (#4998)
conniey Aug 14, 2019
55e3509
Seeing if we can speed up spotbugs (#4988)
JonathanGiles Aug 14, 2019
5fbd93c
Enabling javadoc production for template. (#4963)
mitchdenny Aug 15, 2019
d043adc
Update link to Java Guidelines. (#4842)
Aug 15, 2019
3f0befe
Fixes on Check on checkstyle (#5003)
mssfang Aug 15, 2019
2f1b778
Update Storage swagger (#4981)
tg-msft Aug 15, 2019
76d4a5c
Generated from 36bd571935c333e78d122b05c06cd5cf8bd4eb6b (#4650)
openapi-sdkautomation[bot] Jul 30, 2019
9b193d3
Merge branch 'sdkAutomation/datamigration/resource-manager/v2018_03_3…
Aug 15, 2019
98341e7
Added spock test framework and tests for queue service (#4940)
sima-zhu Aug 15, 2019
9bea3e2
Fix directory path. (#5012)
mitchdenny Aug 16, 2019
230e343
Generated from 004d77657b470329193715edd882bc1934d0785a (#155)
openapi-sdkautomation[bot] Aug 16, 2019
b482a5f
Generated from 36bd571935c333e78d122b05c06cd5cf8bd4eb6b (#4650)
openapi-sdkautomation[bot] Jul 30, 2019
89bd6ff
Generated from 004d77657b470329193715edd882bc1934d0785a (#155)
openapi-sdkautomation[bot] Aug 16, 2019
ccdc466
Merge branch 'sdkAutomation/datamigration/resource-manager/v2018_03_3…
Aug 16, 2019
a7c574c
Generated from f1ef9612fd56160b7976caeae1830276cd848761 (#169)
openapi-sdkautomation[bot] Aug 19, 2019
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
Prev Previous commit
Next Next commit
Optimize checkout (Azure#4982)
* Explicit checkout on build step to test.

* Adding checkout steps to test and analyze.
  • Loading branch information
mitchdenny authored and pull[bot] committed Aug 14, 2019
commit 81b0d20d1a1ae6133d4a8d47706a642c5ac5f648
9 changes: 9 additions & 0 deletions eng/pipelines/templates/jobs/archetype-sdk-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ jobs:
JavaVersion: '1.11'

steps:
- checkout: self
fetchDepth: 1

- script: |
echo "##vso[build.addbuildtag]Scheduled"
displayName: 'Tag scheduled builds'
Expand Down Expand Up @@ -87,6 +90,9 @@ jobs:
vmImage: 'ubuntu-16.04'

steps:
- checkout: self
fetchDepth: 1

- task: UsePythonVersion@0
displayName: 'Use Python 3.6'
inputs:
Expand Down Expand Up @@ -222,6 +228,9 @@ jobs:
vmImage: $(OSVmImage)

steps:
- checkout: self
fetchDepth: 1

- template: ../steps/verify-agent-os.yml
parameters:
OSName: $(OSName)
Expand Down