You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/load-testing/tutorial-cicd-azure-pipelines.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ services: load-testing
6
6
ms.service: load-testing
7
7
ms.author: ninallam
8
8
author: ninallam
9
-
ms.date: 11/30/2021
9
+
ms.date: 01/25/2022
10
10
ms.topic: tutorial
11
11
#Customer intent: As an Azure user, I want to learn how to automatically test builds for performance regressions on every merge request and/or deployment by using Azure Pipelines.
12
12
---
@@ -36,8 +36,7 @@ You'll learn how to:
36
36
37
37
* An Azure account with an active subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
38
38
* An Azure DevOps organization and project. If you don't have an Azure DevOps organization, you can [create one for free](/azure/devops/pipelines/get-started/pipelines-sign-up?view=azure-devops&preserve-view=true). If you need help with getting started with Azure Pipelines, see [Create your first pipeline](/azure/devops/pipelines/create-first-pipeline?preserve-view=true&view=azure-devops&tabs=java%2Ctfs-2018-2%2Cbrowser).
39
-
* A GitHub account, where you can create a repository. If you don't have one, you can [create one for free](https://github.com/).
40
-
* An existing Azure Load Testing resource. To create a Load Testing resource, see [Create and run a load test](./quickstart-create-and-run-load-test.md#create_resource).
39
+
* A GitHub account, where you can create a repository. If you don't have one, you can [create one for free](https://github.com/).
41
40
42
41
## Set up your repository
43
42
@@ -154,6 +153,7 @@ First, you'll install the Azure Load Testing extension from the Azure DevOps Mar
154
153
For every update to the main branch, the Azure pipeline executes the following steps:
155
154
156
155
- Deploy the sample Node.js application to an Azure App Service web app. The name of the web app is configured in the pipeline definition.
156
+
- Create an Azure Load Testing resource using the Azure Resource Manager (ARM) template present in the GitHub repository. Learn more about ARM templates [here](/azure/azure-resource-manager/templates/overview).
157
157
- Trigger Azure Load Testing to create and run the load test, based on the Apache JMeter script and the test configuration YAML file in the repository.
158
158
159
159
To view the results of the load test in the pipeline log:
@@ -313,22 +313,22 @@ The following YAML code snippet describes how to use the task in an Azure Pipeli
Copy file name to clipboardExpand all lines: articles/load-testing/tutorial-cicd-github-actions.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ services: load-testing
6
6
ms.service: load-testing
7
7
ms.author: ninallam
8
8
author: ninallam
9
-
ms.date: 01/21/2022
9
+
ms.date: 01/27/2022
10
10
ms.topic: tutorial
11
11
#Customer intent: As an Azure user, I want to learn how to automatically test builds for performance regressions on every pull request and/or deployment by using GitHub Actions.
12
12
---
@@ -34,7 +34,6 @@ You'll learn how to:
34
34
35
35
* An Azure account with an active subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
36
36
* A GitHub account where you can create a repository. If you don't have one, you can [create one for free](https://github.com/).
37
-
* An existing Azure Load Testing resource. To create a Load Testing resource, see [Create and run a load test](./quickstart-create-and-run-load-test.md#create_resource).
38
37
39
38
## Set up your repository
40
39
@@ -182,6 +181,7 @@ Update the *SampleApp.yaml* GitHub Actions workflow file to configure the parame
182
181
The GitHub Actions workflow executes the following steps for every update to the main branch:
183
182
184
183
- Deploy the sample Node.js application to an Azure App Service web app. The name of the web app is configured in the workflow file.
184
+
- Create an Azure Load Testing resource using the Azure Resource Manager (ARM) template present in the GitHub repository. Learn more about ARM templates [here](/azure/azure-resource-manager/templates/overview).
185
185
- Trigger Azure Load Testing to create and run the load test based on the Apache JMeter script and the test configuration YAML file in the repository.
186
186
187
187
To view the results of the load test in the GitHub Actions workflow log:
0 commit comments