We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c882f2 commit 1eec3c4Copy full SHA for 1eec3c4
.pipelines/templates/e2e-template.yaml
@@ -14,6 +14,13 @@ jobs:
14
timeoutInMinutes: 90
15
displayName: Run AgentBaker E2E ${{parameters.name}}
16
steps:
17
+ - checkout: self
18
+ # s is the default path for repositories - if we don't set this when using multiple repsositories, then it is the repo name
19
+ # "s/AgentBaker", but most of the pipeline variables still refer to "s" and many of the scripts below fail.
20
+ path: s
21
+ fetchTags: false
22
+ fetchDepth: 1
23
+
24
- bash: |
25
set -ex
26
az login --identity --username $(E2E_AGENT_IDENTITY_ID)
0 commit comments