mirror of
https://github.com/actions/runner-images.git
synced 2025-12-12 20:26:49 +00:00
Fix scripts to avoid using hosted term which is ambiguous in this context.
This commit is contained in:
@@ -62,7 +62,7 @@ Function GenerateResourcesAndImage {
|
|||||||
Delete the resource group if it exists without user confirmation.
|
Delete the resource group if it exists without user confirmation.
|
||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
GenerateResourcesAndImage -SubscriptionId {YourSubscriptionId} -ResourceGroupName "shsamytest1" -ImageGenerationRepositoryRoot "C:\azure-pipelines-image-generation" -ImageType Ubuntu1604 -AzureLocation "East US"
|
GenerateResourcesAndImage -SubscriptionId {YourSubscriptionId} -ResourceGroupName "shsamytest1" -ImageGenerationRepositoryRoot "C:\virtual-environments" -ImageType Ubuntu1604 -AzureLocation "East US"
|
||||||
#>
|
#>
|
||||||
param (
|
param (
|
||||||
[Parameter(Mandatory = $True)]
|
[Parameter(Mandatory = $True)]
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
# Name of the hosted pool this image will support
|
# Name of the pool supported by this image
|
||||||
POOL_NAME="Hosted Ubuntu 1604"
|
POOL_NAME="Ubuntu 1604"
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
# Name of the hosted pool this image will support
|
# Name of pool supported by this image
|
||||||
POOL_NAME="Hosted Ubuntu 1804"
|
POOL_NAME="Ubuntu 1804"
|
||||||
|
|||||||
@@ -7,6 +7,6 @@
|
|||||||
|
|
||||||
source $HELPER_SCRIPTS/document.sh
|
source $HELPER_SCRIPTS/document.sh
|
||||||
|
|
||||||
AddTitle "Hosted Ubuntu 1604 Image ($(lsb_release -ds))"
|
AddTitle "$(lsb_release -ds)"
|
||||||
WriteItem "The following software is installed on machines in the Hosted Ubuntu 1604 ($IMAGE_VERSION) pool"
|
WriteItem "The following software is installed on machines with the $IMAGE_VERSION update."
|
||||||
WriteItem "***"
|
WriteItem "***"
|
||||||
|
|||||||
@@ -7,6 +7,6 @@
|
|||||||
|
|
||||||
source $HELPER_SCRIPTS/document.sh
|
source $HELPER_SCRIPTS/document.sh
|
||||||
|
|
||||||
AddTitle "Hosted Ubuntu 1804 Image ($(lsb_release -ds))"
|
AddTitle "$(lsb_release -ds)"
|
||||||
WriteItem "The following software is installed on machines in the Hosted Ubuntu 1804 (v$IMAGE_VERSION) pool"
|
WriteItem "The following software is installed on machines with the $IMAGE_VERSION update."
|
||||||
WriteItem "***"
|
WriteItem "***"
|
||||||
|
|||||||
@@ -119,9 +119,9 @@ wmic logicaldisk get size,freespace,caption
|
|||||||
# Adding description of the software to Markdown
|
# Adding description of the software to Markdown
|
||||||
|
|
||||||
$Content = @"
|
$Content = @"
|
||||||
# Azure Pipelines Hosted VS2017 image
|
# Windows Server 2016
|
||||||
|
|
||||||
The following software is installed on machines in the Azure Pipelines **Hosted VS2017** (v$env:ImageVersion) pool.
|
The following software is installed on machines with the $env:ImageVersion update.
|
||||||
|
|
||||||
Components marked with **\*** have been upgraded since the previous version of the image.
|
Components marked with **\*** have been upgraded since the previous version of the image.
|
||||||
|
|
||||||
|
|||||||
@@ -118,9 +118,9 @@ wmic logicaldisk get size,freespace,caption
|
|||||||
# Adding description of the software to Markdown
|
# Adding description of the software to Markdown
|
||||||
|
|
||||||
$Content = @"
|
$Content = @"
|
||||||
# Azure Pipelines Hosted Windows 2019 with VS2019 image
|
# Windows Server 2019
|
||||||
|
|
||||||
The following software is installed on machines in the Azure Pipelines **Hosted Windows 2019 with VS2019** (v$env:ImageVersion) pool.
|
The following software is installed on machines with the $env:ImageVersion update.
|
||||||
|
|
||||||
Components marked with **\*** have been upgraded since the previous version of the image.
|
Components marked with **\*** have been upgraded since the previous version of the image.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user