Skip to content

Commit 2a32f3a

Browse files
committed
updates
1 parent 2883e0c commit 2a32f3a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

learn-pr/azure/test-bicep-code-using-azure-pipelines/includes/4-exercise-set-up-environment.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Run a template that sets up your Azure DevOps organization.
4141
1. Enter a project name such as *toy-website-test*, then select **Enter**.
4242

4343
1. After your project is created, go to your Azure DevOps organization in your browser (at `https://dev.azure.com/<your-organization-name>/`) and select the project.
44+
1. In Azure DevOps, [Create a self-hosted agent](/azure/devops/pipelines/agents/windows-agent) in the Default pool.
4445

4546
## Fork the repository
4647

learn-pr/azure/test-bicep-code-using-azure-pipelines/includes/5-exercise-add-lint-validate-stages-pipeline.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ First, you need to update your pipeline file to define a stage. Azure Pipelines
2424
> [!TIP]
2525
> YAML files are sensitive to indentation. Whether you type or paste this code, make sure your indentation is correct. Later in this exercise, you'll see the complete YAML pipeline definition so that you can verify that your file matches.
2626
27+
1. Replace the pool configuration on line 7 with this line:
28+
29+
:::code language="yaml" source="code/5-pipeline.yml" range="7" :::
30+
2731
## Add lint and validation stages to your pipeline
2832

2933
1. Below the `stages:` line, add a lint stage:

learn-pr/azure/test-bicep-code-using-azure-pipelines/includes/code/5-pipeline.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ trigger:
44
include:
55
- main
66

7-
pool:
8-
vmImage: ubuntu-latest
7+
pool: Default
98

109
variables:
1110
- name: deploymentDefaultLocation

0 commit comments

Comments
 (0)