Skip to content

Commit 830e203

Browse files
authored
Merge pull request #79399 from ahmedelnably/master
Updating Functions DevOps article
2 parents f82c286 + d6bc801 commit 830e203

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

articles/azure-functions/functions-how-to-azure-devops.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ Each language has specific build steps to create a deployment artifact, which ca
3232
You can use the following sample to create your YAML file to build your .NET app.
3333

3434
```yaml
35-
jobs:
36-
- job: Build
37-
pool:
35+
pool:
3836
vmImage: 'VS2017-Win2016'
3937
steps:
4038
- script: |
@@ -65,9 +63,7 @@ steps:
6563
You can use the following sample to create your YAML file to build your JavaScript app:
6664
6765
```yaml
68-
jobs:
69-
- job: Build
70-
pool:
66+
pool:
7167
vmImage: ubuntu-16.04 # Use 'VS2017-Win2016' if you have Windows native +Node modules
7268
steps:
7369
- bash: |
@@ -95,9 +91,7 @@ steps:
9591
You can use the following sample to create your YAML file to build your Python app, Python is only supported for Linux Azure Functions:
9692
9793
```yaml
98-
jobs:
99-
- job: Build
100-
pool:
94+
pool:
10195
vmImage: ubuntu-16.04
10296
steps:
10397
- task: UsePythonVersion@0
@@ -130,9 +124,7 @@ steps:
130124
You can use the following sample to create your YAML file to package your PowerShell app, PowerShell is only supported for Windows Azure Functions:
131125
132126
```yaml
133-
jobs:
134-
- job: Build
135-
pool:
127+
pool:
136128
vmImage: 'VS2017-Win2016'
137129
steps:
138130
- task: ArchiveFiles@2

0 commit comments

Comments
 (0)