Staging
v0.5.1
https://github.com/python/cpython
Revision 34214de6ab9ebcb5d63d0e116800d5ee535a38cb authored by Łukasz Langa on 01 October 2019, 12:58:26 UTC, committed by Łukasz Langa on 01 October 2019, 12:58:26 UTC
1 parent bfe1f74
Raw File
Tip revision: 34214de6ab9ebcb5d63d0e116800d5ee535a38cb authored by Łukasz Langa on 01 October 2019, 12:58:26 UTC
v3.8.0rc1
Tip revision: 34214de
checkout.yml
parameters:
  depth: 3

steps:
- checkout: none

- script: git clone --progress -v --depth ${{ parameters.depth }} --branch $(SourceTag) --single-branch https://github.com/$(GitRemote)/cpython.git .
  displayName: 'git clone ($(GitRemote)/$(SourceTag))'
  condition: and(succeeded(), and(variables['GitRemote'], variables['SourceTag']))

- script: git clone --progress -v --depth ${{ parameters.depth }} --branch $(SourceTag) --single-branch $(Build.Repository.Uri) .
  displayName: 'git clone (<default>/$(SourceTag))'
  condition: and(succeeded(), and(not(variables['GitRemote']), variables['SourceTag']))

- script: git clone --progress -v --depth ${{ parameters.depth }} --branch $(Build.SourceBranchName) --single-branch https://github.com/$(GitRemote)/cpython.git .
  displayName: 'git clone ($(GitRemote)/<default>)'
  condition: and(succeeded(), and(variables['GitRemote'], not(variables['SourceTag'])))

- script: git clone --progress -v --depth ${{ parameters.depth }} --branch $(Build.SourceBranchName) --single-branch $(Build.Repository.Uri) .
  displayName: 'git clone'
  condition: and(succeeded(), and(not(variables['GitRemote']), not(variables['SourceTag'])))
back to top