File tree Expand file tree Collapse file tree 1 file changed +30
-9
lines changed Expand file tree Collapse file tree 1 file changed +30
-9
lines changed Original file line number Diff line number Diff line change 4
4
# https://aka.ms/yaml
5
5
6
6
trigger :
7
- - main
7
+ - master
8
8
9
9
pool :
10
- vmImage : ubuntu-latest
10
+ vmImage : ' ubuntu-latest'
11
11
12
- steps :
13
- - script : echo Hello, world!
14
- displayName : ' Run a one-line script'
12
+ # Pipelines > Stages > Jobs > Tasks(Steps)
15
13
16
- - script : |
17
- echo Add other tasks to build, test, and deploy your project.
18
- echo See https://aka.ms/yaml
19
- displayName : ' Run a multi-line script'
14
+ jobs :
15
+ - job : Job1
16
+ steps :
17
+ - script : echo Job1 - Hello, world, changed!
18
+ displayName : ' Run a one-line script'
19
+ - script : |
20
+ echo Add other tasks to build, test, and deploy your project.
21
+ echo See https://aka.ms/yaml
22
+ echo more information
23
+ displayName: 'Run a multi-line script'
24
+ - job : Job2
25
+ dependsOn : Job1
26
+ steps :
27
+ - script : echo Job2!
28
+ displayName : ' Run a one-line script'
29
+ - job : Job3
30
+ dependsOn : Job1
31
+ steps :
32
+ - script : echo Job3!
33
+ displayName : ' Run a one-line script'
34
+ - job : Job4
35
+ dependsOn :
36
+ - Job2
37
+ - Job3
38
+ steps :
39
+ - script : echo Job3!
40
+ displayName : ' Run a one-line script'
You can’t perform that action at this time.
0 commit comments