Compare commits
48
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e986940290 | ||
|
|
2c323d2f04 | ||
|
|
3c3efb2c8f | ||
|
|
3f8a20c34f | ||
|
|
ca9d39c650 | ||
|
|
3c122d2e15 | ||
|
|
297d15071e | ||
|
|
25bced643e | ||
|
|
5f43149423 | ||
|
|
6f0d16bb03 | ||
|
|
7ca9ebb498 | ||
|
|
ab54edda7e | ||
|
|
ea2cbb444d | ||
|
|
71845af4a0 | ||
|
|
7809601472 | ||
|
|
1489b3b53c | ||
|
|
1b5eca2f7d | ||
|
|
dc02e08c4e | ||
|
|
bf87643c5a | ||
|
|
9f247d4780 | ||
|
|
25d40db3ed | ||
|
|
acd42a3d51 | ||
|
|
61e9d92e19 | ||
|
|
331b0774b4 | ||
|
|
95dbc57b74 | ||
|
|
bb7932d627 | ||
|
|
0f4b96df94 | ||
|
|
9e8d521bef | ||
|
|
ff2db66e2d | ||
|
|
9782878208 | ||
|
|
b984947b8f | ||
|
|
f0e516bc43 | ||
|
|
a88fc4db06 | ||
|
|
0f23c02540 | ||
|
|
23e31c9330 | ||
|
|
8394289b46 | ||
|
|
cc7ea58394 | ||
|
|
0f9d80da56 | ||
|
|
b5421c9536 | ||
|
|
9b2b536f10 | ||
|
|
e8fc6d05ae | ||
|
|
cddc266cdc | ||
|
|
6622d0ef41 | ||
|
|
ae16afb6f2 | ||
|
|
468df829b9 | ||
|
|
f1147e37b3 | ||
|
|
07e271d774 | ||
|
|
6c2adf32c4 |
@@ -75,7 +75,7 @@ In any case, you will need these software installed:
|
||||
## Manual image generation
|
||||
|
||||
This repository includes a script that assists in generating images in Azure.
|
||||
All you need is an Azure subscription and a build agent configured as described above.
|
||||
All you need is an Azure subscription, a resource group in that subscription and a build agent configured as described above.
|
||||
We suggest starting with building the UbuntuMinimal image because it includes only basic software and builds in less than 30 minutes.
|
||||
|
||||
All the commands below should be executed in PowerShell.
|
||||
@@ -96,7 +96,8 @@ Import-Module .\helpers\GenerateResourcesAndImage.ps1
|
||||
Finally, run the `GenerateResourcesAndImage` function, setting the mandatory arguments: image type and where to build and store the resulting managed image:
|
||||
|
||||
- `SubscriptionId` - your Azure Subscription ID;
|
||||
- `ResourceGroupName` - the name of the resource group that will be created within your subscription (e.g., "imagegen-test");
|
||||
- `ResourceGroupName` - the name of the resource group that will store the resulting artifact (e.g., "imagegen-test").
|
||||
The resource group must already exist in your Azure subscription;
|
||||
- `AzureLocation` - the location where resources will be created (e.g., "East US");
|
||||
- `ImageType` - the type of image to build (we suggest choosing "UbuntuMinimal" here; other valid options are "Windows2019", "Windows2022", "Windows2025", "Ubuntu2004", "Ubuntu2204", "Ubuntu2404").
|
||||
|
||||
@@ -195,9 +196,10 @@ you can use Packer directly. To do this, you will need:
|
||||
- a resource group created in your Azure subscription where the managed image will be stored;
|
||||
- a string to be used as a password for the user used to install software (Windows only).
|
||||
|
||||
Then, you can invoke Packer in your CI/CD pipeline using the following command:
|
||||
Then, you can invoke Packer in your CI/CD pipeline using the following commands:
|
||||
|
||||
```powershell
|
||||
packer plugins install github.com/hashicorp/azure 2.2.1
|
||||
packer build -var "subscription_id=$SubscriptionId" `
|
||||
-var "client_id=$ClientId" `
|
||||
-var "client_secret=$ClientSecret" `
|
||||
|
||||
@@ -83,7 +83,7 @@ Function GenerateResourcesAndImage {
|
||||
.PARAMETER SubscriptionId
|
||||
The Azure subscription id where the Azure resources will be created.
|
||||
.PARAMETER ResourceGroupName
|
||||
The name of the resource group to create the Azure resources in.
|
||||
The name of the resource group to store the resulting artifact. Resource group must already exist.
|
||||
.PARAMETER ImageType
|
||||
The type of image to generate. Valid values are: Windows2019, Windows2022, Windows2025, Ubuntu2004, Ubuntu2204, Ubuntu2404, UbuntuMinimal.
|
||||
.PARAMETER ManagedImageName
|
||||
@@ -103,12 +103,6 @@ Function GenerateResourcesAndImage {
|
||||
.PARAMETER RestrictToAgentIpAddress
|
||||
If set, access to the VM used by packer to generate the image is restricted to the public IP address this script is run from.
|
||||
This parameter cannot be used in combination with the virtual_network_name packer parameter.
|
||||
.PARAMETER Force
|
||||
Delete the resource group if it exists without user confirmation.
|
||||
This parameter is deprecated and will be removed in a future release.
|
||||
.PARAMETER ReuseResourceGroup
|
||||
Reuse the resource group if it exists without user confirmation.
|
||||
This parameter is deprecated and will be removed in a future release.
|
||||
.PARAMETER OnError
|
||||
Specify how packer handles an error during image creation.
|
||||
Options:
|
||||
@@ -150,24 +144,12 @@ Function GenerateResourcesAndImage {
|
||||
[Parameter(Mandatory = $False)]
|
||||
[switch] $RestrictToAgentIpAddress,
|
||||
[Parameter(Mandatory = $False)]
|
||||
[switch] $Force,
|
||||
[Parameter(Mandatory = $False)]
|
||||
[switch] $ReuseResourceGroup,
|
||||
[Parameter(Mandatory = $False)]
|
||||
[ValidateSet("abort", "ask", "cleanup", "run-cleanup-provisioner")]
|
||||
[string] $OnError = "ask",
|
||||
[Parameter(Mandatory = $False)]
|
||||
[hashtable] $Tags = @{}
|
||||
)
|
||||
|
||||
if ($Force -or $ReuseResourceGroup) {
|
||||
Write-Warning "The `ReuseResourceGroup` and `Force` parameters are deprecated and will be removed in a future release. The resource group will be reused when it already exists and an error will be thrown when it doesn't. If you want to delete the resource group, please delete it manually."
|
||||
}
|
||||
|
||||
if ($Force -and $ReuseResourceGroup) {
|
||||
throw "Force and ReuseResourceGroup cannot be used together."
|
||||
}
|
||||
|
||||
Show-LatestCommit -ErrorAction SilentlyContinue
|
||||
|
||||
# Validate packer is installed
|
||||
@@ -266,73 +248,8 @@ Function GenerateResourcesAndImage {
|
||||
if ($ResourceGroupExists) {
|
||||
Write-Verbose "Resource group '$ResourceGroupName' already exists."
|
||||
}
|
||||
|
||||
# Remove resource group if it exists and we are not reusing it
|
||||
if ($ResourceGroupExists -and -not $ReuseResourceGroup) {
|
||||
if ($Force) {
|
||||
# Delete and recreate the resource group
|
||||
Write-Host "Deleting resource group '$ResourceGroupName'..."
|
||||
az group delete --name $ResourceGroupName --yes --output none
|
||||
if ($LastExitCode -ne 0) {
|
||||
throw "Failed to delete resource group '$ResourceGroupName'."
|
||||
}
|
||||
Write-Host "Resource group '$ResourceGroupName' was deleted."
|
||||
$ResourceGroupExists = $false
|
||||
}
|
||||
else {
|
||||
# are we running in a non-interactive session?
|
||||
# https://stackoverflow.com/questions/9738535/powershell-test-for-noninteractive-mode
|
||||
if ([System.Console]::IsOutputRedirected -or ![Environment]::UserInteractive -or !!([Environment]::GetCommandLineArgs() | Where-Object { $_ -ilike '-noni*' })) {
|
||||
throw "Non-interactive mode, resource group '$ResourceGroupName' already exists, either specify -Force to delete it, or -ReuseResourceGroup to reuse."
|
||||
}
|
||||
else {
|
||||
# Resource group already exists, ask the user what to do
|
||||
$title = "Resource group '$ResourceGroupName' already exists"
|
||||
$message = "Do you want to delete the resource group and all resources in it?"
|
||||
|
||||
$options = @(
|
||||
[System.Management.Automation.Host.ChoiceDescription]::new("&Yes", "Delete the resource group and all resources in it."),
|
||||
[System.Management.Automation.Host.ChoiceDescription]::new("&No", "Keep the resource group and continue."),
|
||||
[System.Management.Automation.Host.ChoiceDescription]::new("&Abort", "Abort execution.")
|
||||
)
|
||||
$result = $Host.UI.PromptForChoice($title, $message, $options, 0)
|
||||
}
|
||||
|
||||
switch ($result) {
|
||||
0 {
|
||||
# Delete and recreate the resource group
|
||||
Write-Host "Deleting resource group '$ResourceGroupName'..."
|
||||
az group delete --name $ResourceGroupName --yes
|
||||
if ($LastExitCode -ne 0) {
|
||||
throw "Failed to delete resource group '$ResourceGroupName'."
|
||||
}
|
||||
Write-Host "Resource group '$ResourceGroupName' was deleted."
|
||||
$ResourceGroupExists = $false
|
||||
}
|
||||
1 {
|
||||
# Keep the resource group and continue
|
||||
}
|
||||
2 {
|
||||
# Stop the current action
|
||||
Write-Error "User stopped the action."
|
||||
exit 1
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Create resource group
|
||||
if (-not $ResourceGroupExists) {
|
||||
Write-Host "Creating resource group '$ResourceGroupName' in location '$AzureLocation'..."
|
||||
if ($TagsList) {
|
||||
az group create --name $ResourceGroupName --location $AzureLocation --tags $TagsList --query id
|
||||
}
|
||||
else {
|
||||
az group create --name $ResourceGroupName --location $AzureLocation --query id
|
||||
}
|
||||
if ($LastExitCode -ne 0) {
|
||||
throw "Failed to create resource group '$ResourceGroupName'."
|
||||
}
|
||||
else {
|
||||
throw "Resource group '$ResourceGroupName' does not exist."
|
||||
}
|
||||
|
||||
# Create service principal
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[ macOS ] .NET 7.x will be removed from macOS-13 and macOS-14 images on February 24,2025.](https://github.com/actions/runner-images/issues/11501) |
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from February, 17](https://github.com/actions/runner-images/issues/11486) |
|
||||
| [[macOS] Ruby version 3.0 will be removed from the images on Feb 10, 2025 and 3.3 will be set as default. ](https://github.com/actions/runner-images/issues/11345) |
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from March, 18](https://github.com/actions/runner-images/issues/11486) |
|
||||
| [[macOS] Ruby version 3.0 will be removed from the images on Feb 17, 2025 and 3.3 will be set as default. ](https://github.com/actions/runner-images/issues/11345) |
|
||||
***
|
||||
# macOS 13
|
||||
- OS Version: macOS 13.7.2 (22H313)
|
||||
- OS Version: macOS 13.7.4 (22H420)
|
||||
- Kernel Version: Darwin 22.6.0
|
||||
- Image Version: 20250129.634
|
||||
- Image Version: 20250303.763
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.410, 8.0.101, 8.0.204, 8.0.303, 8.0.405, 9.0.102
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.406, 9.0.102, 9.0.200
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 14.0.0
|
||||
- Clang/LLVM (Homebrew) 15.0.7 - available on `$(brew --prefix llvm@15)/bin/clang`
|
||||
@@ -24,42 +24,42 @@
|
||||
- GNU Fortran 14 (Homebrew GCC 14.2.0_1) - available by `gfortran-14` alias
|
||||
- Kotlin 2.1.10-release-473
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 20.18.2
|
||||
- Node.js 20.18.3
|
||||
- Perl 5.40.1
|
||||
- PHP 8.4.3
|
||||
- Python3 3.13.1
|
||||
- Ruby 3.0.7p220
|
||||
- PHP 8.4.4
|
||||
- Python3 3.13.2
|
||||
- Ruby 3.3.7
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.5.23
|
||||
- Bundler 2.6.5
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Composer 2.8.5
|
||||
- Homebrew 4.4.19
|
||||
- Composer 2.8.6
|
||||
- Homebrew 4.4.22
|
||||
- NPM 10.8.2
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 25.0 (python 3.13)
|
||||
- Pip3 25.0.1 (python 3.13)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.5.23
|
||||
- Vcpkg 2025 (build from commit ab42fb303)
|
||||
- RubyGems 3.6.5
|
||||
- Vcpkg 2025 (build from commit efb1e74369)
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.15
|
||||
- Apache Maven 3.9.9
|
||||
- Gradle 8.12.1
|
||||
- Gradle 8.13
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.28.0
|
||||
- bazel 8.0.1
|
||||
- bazel 8.1.1
|
||||
- bazelisk 1.25.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.11.1
|
||||
- Curl 8.12.1
|
||||
- Git 2.48.1
|
||||
- Git LFS 3.6.1
|
||||
- GitHub CLI 2.65.0
|
||||
- GitHub CLI 2.67.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.7
|
||||
@@ -69,20 +69,20 @@
|
||||
- pkgconf 2.3.0
|
||||
- Unxip 3.1
|
||||
- yq 4.45.1
|
||||
- zstd 1.5.6
|
||||
- zstd 1.5.7
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.23.8
|
||||
- AWS SAM CLI 1.132.0
|
||||
- AWS Session Manager CLI 1.2.694.0
|
||||
- Azure CLI 2.68.0
|
||||
- AWS CLI 2.24.15
|
||||
- AWS SAM CLI 1.134.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.69.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- Bicep CLI 0.33.13
|
||||
- Cmake 3.31.5
|
||||
- Bicep CLI 0.33.93
|
||||
- Cmake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Fastlane 2.226.0
|
||||
- SwiftFormat 0.55.5
|
||||
- Xcbeautify 2.23.0
|
||||
- Xcbeautify 2.27.0
|
||||
- Xcode Command Line Tools 14.3.1.0.1.1683849156
|
||||
- Xcodes 1.6.0
|
||||
|
||||
@@ -92,14 +92,14 @@
|
||||
### Browsers
|
||||
- Safari 18.3 (18620.2.4.111.8)
|
||||
- SafariDriver 18.3 (18620.2.4.111.8)
|
||||
- Google Chrome 132.0.6834.160
|
||||
- Google Chrome for Testing 132.0.6834.159
|
||||
- ChromeDriver 132.0.6834.159
|
||||
- Microsoft Edge 132.0.2957.127
|
||||
- Microsoft Edge WebDriver 132.0.2957.127
|
||||
- Mozilla Firefox 134.0.2
|
||||
- geckodriver 0.35.0
|
||||
- Selenium server 4.28.0
|
||||
- Google Chrome 133.0.6943.142
|
||||
- Google Chrome for Testing 133.0.6943.141
|
||||
- ChromeDriver 133.0.6943.141
|
||||
- Microsoft Edge 133.0.3065.92
|
||||
- Microsoft Edge WebDriver 133.0.3065.92
|
||||
- Mozilla Firefox 135.0.1
|
||||
- geckodriver 0.36.0
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -119,45 +119,44 @@
|
||||
### Cached Tools
|
||||
|
||||
#### PyPy
|
||||
- 2.7.18 [PyPy 7.3.17]
|
||||
- 2.7.18 [PyPy 7.3.19]
|
||||
- 3.7.13 [PyPy 7.3.9]
|
||||
- 3.8.16 [PyPy 7.3.11]
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.14 [PyPy 7.3.17]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.6
|
||||
- 3.2.6
|
||||
- 3.2.7
|
||||
- 3.3.7
|
||||
- 3.4.1
|
||||
- 3.4.2
|
||||
|
||||
#### Python
|
||||
- 3.8.18
|
||||
- 3.9.21
|
||||
- 3.10.16
|
||||
- 3.11.9
|
||||
- 3.12.8
|
||||
- 3.13.1
|
||||
- 3.12.9
|
||||
- 3.13.2
|
||||
|
||||
#### Node.js
|
||||
- 18.20.6
|
||||
- 20.18.2
|
||||
- 22.13.1
|
||||
- 18.20.7
|
||||
- 20.18.3
|
||||
- 22.14.0
|
||||
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.11
|
||||
- 1.23.5
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.84.0
|
||||
- Rust 1.84.0
|
||||
- Rustdoc 1.84.0
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.27.1
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.84
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -244,7 +243,7 @@
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 35.3.11 |
|
||||
| Android Emulator | 35.3.12 |
|
||||
| Android SDK Build-tools | 35.0.0 35.0.1<br>34.0.0<br>33.0.2 33.0.3 |
|
||||
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3) |
|
||||
| Android SDK Platform-Tools | 35.0.2 |
|
||||
@@ -270,7 +269,7 @@
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------- | ----------------------------------------------------------------------------------------- |
|
||||
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v20/20.2.0-55872/ParallelsDesktop-20.2.0-55872.dmg |
|
||||
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v20/20.2.2-55879/ParallelsDesktop-20.2.2-55879.dmg |
|
||||
|
||||
##### Notes
|
||||
```
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[macOS] Ruby version 3.0 will be removed from the images on Feb 10, 2025 and 3.3 will be set as default. ](https://github.com/actions/runner-images/issues/11345) |
|
||||
| [[macOS] The macOS 12 Actions runner image will begin deprecation on 10/7/24 and will be fully unsupported by 12/3/24 for GitHub and by 01/13/25 for ADO](https://github.com/actions/runner-images/issues/10721) |
|
||||
| [macOS 15 (Sequoia) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/10686) |
|
||||
| [[ macOS ] .NET 7.x will be removed from macOS-13 and macOS-14 images on February 24,2025.](https://github.com/actions/runner-images/issues/11501) |
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from March, 18](https://github.com/actions/runner-images/issues/11486) |
|
||||
| [[macOS] Ruby version 3.0 will be removed from the images on Feb 17, 2025 and 3.3 will be set as default. ](https://github.com/actions/runner-images/issues/11345) |
|
||||
***
|
||||
# macOS 13
|
||||
- OS Version: macOS 13.7.2 (22H313)
|
||||
- OS Version: macOS 13.7.4 (22H420)
|
||||
- Kernel Version: Darwin 22.6.0
|
||||
- Image Version: 20250127.672
|
||||
- Image Version: 20250303.855
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.410, 8.0.101, 8.0.204, 8.0.303, 8.0.405, 9.0.102
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.406, 9.0.102, 9.0.200
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 14.0.0
|
||||
- Clang/LLVM (Homebrew) 15.0.7 - available on `$(brew --prefix llvm@15)/bin/clang`
|
||||
@@ -22,41 +22,41 @@
|
||||
- GNU Fortran 12 (Homebrew GCC 12.4.0) - available by `gfortran-12` alias
|
||||
- GNU Fortran 13 (Homebrew GCC 13.3.0) - available by `gfortran-13` alias
|
||||
- GNU Fortran 14 (Homebrew GCC 14.2.0_1) - available by `gfortran-14` alias
|
||||
- Kotlin 2.1.0-release-394
|
||||
- Kotlin 2.1.10-release-473
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 20.18.2
|
||||
- Node.js 20.18.3
|
||||
- Perl 5.40.1
|
||||
- Python3 3.13.1
|
||||
- Ruby 3.0.7p220
|
||||
- Python3 3.13.2
|
||||
- Ruby 3.3.7
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.5.23
|
||||
- Bundler 2.6.5
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Homebrew 4.4.17
|
||||
- Homebrew 4.4.22
|
||||
- NPM 10.8.2
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 24.3.1 (python 3.13)
|
||||
- Pip3 25.0 (python 3.13)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.5.23
|
||||
- RubyGems 3.6.5
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.15
|
||||
- Apache Maven 3.9.9
|
||||
- Gradle 8.12.1
|
||||
- Gradle 8.13
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.27.1
|
||||
- bazel 8.0.1
|
||||
- azcopy 10.28.0
|
||||
- bazel 8.1.1
|
||||
- bazelisk 1.25.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.7.1
|
||||
- Git 2.48.1
|
||||
- Git LFS 3.6.1
|
||||
- GitHub CLI 2.65.0
|
||||
- GitHub CLI 2.67.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.7
|
||||
@@ -66,32 +66,32 @@
|
||||
- pkgconf 2.3.0
|
||||
- Unxip 3.1
|
||||
- yq 4.45.1
|
||||
- zstd 1.5.6
|
||||
- zstd 1.5.7
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.23.6
|
||||
- AWS SAM CLI 1.132.0
|
||||
- AWS Session Manager CLI 1.2.694.0
|
||||
- Azure CLI 2.68.0
|
||||
- AWS CLI 2.24.15
|
||||
- AWS SAM CLI 1.134.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.69.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- Bicep CLI 0.33.13
|
||||
- Cmake 3.31.5
|
||||
- Bicep CLI 0.33.93
|
||||
- Cmake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Fastlane 2.226.0
|
||||
- SwiftFormat 0.55.5
|
||||
- Xcbeautify 2.23.0
|
||||
- Xcbeautify 2.27.0
|
||||
- Xcode Command Line Tools 14.3.1.0.1.1683849156
|
||||
- Xcodes 1.6.0
|
||||
|
||||
### Linters
|
||||
|
||||
### Browsers
|
||||
- Safari 18.2 (18620.1.16.111.6)
|
||||
- SafariDriver 18.2 (18620.1.16.111.6)
|
||||
- Google Chrome 132.0.6834.111
|
||||
- Google Chrome for Testing 132.0.6834.110
|
||||
- ChromeDriver 132.0.6834.110
|
||||
- Selenium server 4.28.0
|
||||
- Safari 18.3 (18620.2.4.111.8)
|
||||
- SafariDriver 18.3 (18620.2.4.111.8)
|
||||
- Google Chrome 133.0.6943.142
|
||||
- Google Chrome for Testing 133.0.6943.141
|
||||
- ChromeDriver 133.0.6943.141
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -110,35 +110,34 @@
|
||||
### Cached Tools
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.6
|
||||
- 3.2.6
|
||||
- 3.2.7
|
||||
- 3.3.7
|
||||
- 3.4.1
|
||||
- 3.4.2
|
||||
|
||||
#### Python
|
||||
- 3.11.9
|
||||
- 3.12.8
|
||||
- 3.13.1
|
||||
- 3.12.9
|
||||
- 3.13.2
|
||||
|
||||
#### Node.js
|
||||
- 18.20.6
|
||||
- 20.18.2
|
||||
- 22.13.1
|
||||
- 18.20.7
|
||||
- 20.18.3
|
||||
- 22.14.0
|
||||
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.11
|
||||
- 1.23.5
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.84.0
|
||||
- Rust 1.84.0
|
||||
- Rustdoc 1.84.0
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.27.1
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.84
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -196,8 +195,8 @@
|
||||
| visionOS 1.0 | xros1.0 | 15.2 |
|
||||
| Simulator - visionOS 1.0 | xrsimulator1.0 | 15.2 |
|
||||
| Asset Runtime SDK for macOS hosts targeting watchOS 9.4 | assetruntime.host.macosx.target.watchos9.4 | 14.3.1 |
|
||||
| Asset Runtime SDK for macOS hosts targeting tvOS 16.4 | assetruntime.host.macosx.target.appletvos16.4 | 14.3.1 |
|
||||
| Asset Runtime SDK for macOS hosts targeting iOS 16.4 | assetruntime.host.macosx.target.iphoneos16.4 | 14.3.1 |
|
||||
| Asset Runtime SDK for macOS hosts targeting tvOS 16.4 | assetruntime.host.macosx.target.appletvos16.4 | 14.3.1 |
|
||||
| DriverKit 22.1 | driverkit22.1 | 14.1 |
|
||||
| DriverKit 22.2 | driverkit22.2 | 14.2 |
|
||||
| DriverKit 22.4 | driverkit22.4 | 14.3.1 |
|
||||
@@ -226,7 +225,7 @@
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 35.3.11 |
|
||||
| Android Emulator | 35.3.12 |
|
||||
| Android SDK Build-tools | 35.0.0 35.0.1<br>34.0.0<br>33.0.2 33.0.3 |
|
||||
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3) |
|
||||
| Android SDK Platform-Tools | 35.0.2 |
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[macOS] Ruby version 3.0 will be removed from the images on Feb 10, 2025 and 3.3 will be set as default. ](https://github.com/actions/runner-images/issues/11345) |
|
||||
| [macOS 15 (Sequoia) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/10686) |
|
||||
| [[ macOS ] .NET 7.x will be removed from macOS-13 and macOS-14 images on February 24,2025.](https://github.com/actions/runner-images/issues/11501) |
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from March, 18](https://github.com/actions/runner-images/issues/11486) |
|
||||
| [[macOS] Ruby version 3.0 will be removed from the images on Feb 17, 2025 and 3.3 will be set as default. ](https://github.com/actions/runner-images/issues/11345) |
|
||||
***
|
||||
# macOS 14
|
||||
- OS Version: macOS 14.7.2 (23H311)
|
||||
- OS Version: macOS 14.7.4 (23H420)
|
||||
- Kernel Version: Darwin 23.6.0
|
||||
- Image Version: 20250127.727
|
||||
- Image Version: 20250304.890
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.410, 8.0.101, 8.0.204, 8.0.303, 8.0.405, 9.0.102
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.406, 9.0.102, 9.0.200
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 15.0.0
|
||||
- Clang/LLVM (Homebrew) 15.0.7 - available on `$(brew --prefix llvm@15)/bin/clang`
|
||||
@@ -21,43 +22,43 @@
|
||||
- GNU Fortran 12 (Homebrew GCC 12.4.0) - available by `gfortran-12` alias
|
||||
- GNU Fortran 13 (Homebrew GCC 13.3.0) - available by `gfortran-13` alias
|
||||
- GNU Fortran 14 (Homebrew GCC 14.2.0_1) - available by `gfortran-14` alias
|
||||
- Kotlin 2.1.0-release-394
|
||||
- Kotlin 2.1.10-release-473
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 20.18.2
|
||||
- Node.js 20.18.3
|
||||
- Perl 5.40.1
|
||||
- PHP 8.4.3
|
||||
- Python3 3.13.1
|
||||
- Ruby 3.0.7p220
|
||||
- PHP 8.4.4
|
||||
- Python3 3.13.2
|
||||
- Ruby 3.3.7
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.5.23
|
||||
- Bundler 2.6.5
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Composer 2.8.5
|
||||
- Homebrew 4.4.17
|
||||
- Composer 2.8.6
|
||||
- Homebrew 4.4.23
|
||||
- NPM 10.8.2
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 25.0 (python 3.13)
|
||||
- Pip3 25.0.1 (python 3.13)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.5.23
|
||||
- RubyGems 3.6.5
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.15
|
||||
- Apache Maven 3.9.9
|
||||
- Gradle 8.12.1
|
||||
- Gradle 8.13
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.27.1
|
||||
- bazel 8.0.1
|
||||
- azcopy 10.28.0
|
||||
- bazel 8.1.1
|
||||
- bazelisk 1.25.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.11.1
|
||||
- Curl 8.12.1
|
||||
- Git 2.48.1
|
||||
- Git LFS 3.6.1
|
||||
- GitHub CLI 2.65.0
|
||||
- GitHub CLI 2.67.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.7
|
||||
@@ -67,20 +68,20 @@
|
||||
- pkgconf 2.3.0
|
||||
- Unxip 3.1
|
||||
- yq 4.45.1
|
||||
- zstd 1.5.6
|
||||
- zstd 1.5.7
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.23.6
|
||||
- AWS SAM CLI 1.132.0
|
||||
- AWS Session Manager CLI 1.2.694.0
|
||||
- Azure CLI 2.68.0
|
||||
- AWS CLI 2.24.16
|
||||
- AWS SAM CLI 1.134.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.69.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- Bicep CLI 0.33.13
|
||||
- Cmake 3.31.5
|
||||
- Bicep CLI 0.33.93
|
||||
- Cmake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Fastlane 2.226.0
|
||||
- SwiftFormat 0.55.5
|
||||
- Xcbeautify 2.23.0
|
||||
- Xcbeautify 2.27.0
|
||||
- Xcode Command Line Tools 16.2.0.0.1.1733547573
|
||||
- Xcodes 1.6.0
|
||||
|
||||
@@ -88,16 +89,16 @@
|
||||
- SwiftLint 0.58.2
|
||||
|
||||
### Browsers
|
||||
- Safari 18.2 (19620.1.16.111.6)
|
||||
- SafariDriver 18.2 (19620.1.16.111.6)
|
||||
- Google Chrome 132.0.6834.111
|
||||
- Google Chrome for Testing 132.0.6834.110
|
||||
- ChromeDriver 132.0.6834.110
|
||||
- Microsoft Edge 132.0.2957.127
|
||||
- Microsoft Edge WebDriver 132.0.2957.127
|
||||
- Mozilla Firefox 134.0.2
|
||||
- geckodriver 0.35.0
|
||||
- Selenium server 4.28.0
|
||||
- Safari 18.3 (19620.2.4.111.8)
|
||||
- SafariDriver 18.3 (19620.2.4.111.8)
|
||||
- Google Chrome 133.0.6943.142
|
||||
- Google Chrome for Testing 133.0.6943.141
|
||||
- ChromeDriver 133.0.6943.141
|
||||
- Microsoft Edge 133.0.3065.92
|
||||
- Microsoft Edge WebDriver 133.0.3065.92
|
||||
- Mozilla Firefox 135.0.1
|
||||
- geckodriver 0.36.0
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -117,37 +118,36 @@
|
||||
### Cached Tools
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.6
|
||||
- 3.2.6
|
||||
- 3.2.7
|
||||
- 3.3.7
|
||||
- 3.4.1
|
||||
- 3.4.2
|
||||
|
||||
#### Python
|
||||
- 3.9.21
|
||||
- 3.10.16
|
||||
- 3.11.9
|
||||
- 3.12.8
|
||||
- 3.13.1
|
||||
- 3.12.9
|
||||
- 3.13.2
|
||||
|
||||
#### Node.js
|
||||
- 18.20.6
|
||||
- 20.18.2
|
||||
- 22.13.1
|
||||
- 18.20.7
|
||||
- 20.18.3
|
||||
- 22.14.0
|
||||
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.11
|
||||
- 1.23.5
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.84.0
|
||||
- Rust 1.84.0
|
||||
- Rustdoc 1.84.0
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.27.1
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.84
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -214,16 +214,16 @@
|
||||
| Simulator - watchOS 10.5 | watchsimulator10.5 | 15.4 |
|
||||
| Simulator - watchOS 11.1 | watchsimulator11.1 | 16.1 |
|
||||
| Simulator - watchOS 11.2 | watchsimulator11.2 | 16.2 |
|
||||
| Simulator - visionOS 1.0 | xrsimulator1.0 | 15.2 |
|
||||
| visionOS 1.0 | xros1.0 | 15.2 |
|
||||
| Simulator - visionOS 1.1 | xrsimulator1.1 | 15.3 |
|
||||
| visionOS 1.1 | xros1.1 | 15.3 |
|
||||
| Simulator - visionOS 1.2 | xrsimulator1.2 | 15.4 |
|
||||
| visionOS 1.2 | xros1.2 | 15.4 |
|
||||
| visionOS 2.1 | xros2.1 | 16.1 |
|
||||
| visionOS 2.2 | xros2.2 | 16.2 |
|
||||
| Simulator - visionOS 1.0 | xrsimulator1.0 | 15.2 |
|
||||
| Simulator - visionOS 1.1 | xrsimulator1.1 | 15.3 |
|
||||
| Simulator - visionOS 1.2 | xrsimulator1.2 | 15.4 |
|
||||
| Simulator - visionOS 2.1 | xrsimulator2.1 | 16.1 |
|
||||
| Simulator - visionOS 2.2 | xrsimulator2.2 | 16.2 |
|
||||
| visionOS 2.2 | xros2.2 | 16.2 |
|
||||
| DriverKit 23.0 | driverkit23.0 | 15.0.1 |
|
||||
| DriverKit 23.2 | driverkit23.2 | 15.1, 15.2 |
|
||||
| DriverKit 23.4 | driverkit23.4 | 15.3 |
|
||||
@@ -257,7 +257,7 @@
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 35.3.11 |
|
||||
| Android Emulator | 35.3.12 |
|
||||
| Android SDK Build-tools | 35.0.0 35.0.1<br>34.0.0<br>33.0.2 33.0.3 |
|
||||
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3) |
|
||||
| Android SDK Platform-Tools | 35.0.2 |
|
||||
@@ -283,7 +283,7 @@
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------- | ----------------------------------------------------------------------------------------- |
|
||||
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v20/20.2.0-55872/ParallelsDesktop-20.2.0-55872.dmg |
|
||||
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v20/20.2.2-55879/ParallelsDesktop-20.2.2-55879.dmg |
|
||||
|
||||
##### Notes
|
||||
```
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[macOS] Ruby version 3.0 will be removed from the images on Feb 10, 2025 and 3.3 will be set as default. ](https://github.com/actions/runner-images/issues/11345) |
|
||||
| [[macOS] The macOS 12 Actions runner image will begin deprecation on 10/7/24 and will be fully unsupported by 12/3/24 for GitHub and by 01/13/25 for ADO](https://github.com/actions/runner-images/issues/10721) |
|
||||
| [macOS 15 (Sequoia) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/10686) |
|
||||
| [[ macOS ] .NET 7.x will be removed from macOS-13 and macOS-14 images on February 24,2025.](https://github.com/actions/runner-images/issues/11501) |
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from March, 18](https://github.com/actions/runner-images/issues/11486) |
|
||||
| [[macOS] Ruby version 3.0 will be removed from the images on Feb 17, 2025 and 3.3 will be set as default. ](https://github.com/actions/runner-images/issues/11345) |
|
||||
***
|
||||
# macOS 14
|
||||
- OS Version: macOS 14.7.2 (23H311)
|
||||
- OS Version: macOS 14.7.4 (23H420)
|
||||
- Kernel Version: Darwin 23.6.0
|
||||
- Image Version: 20250120.774
|
||||
- Image Version: 20250304.1018
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.410, 8.0.101, 8.0.204, 8.0.303, 8.0.405, 9.0.102
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.406, 9.0.102, 9.0.200
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 15.0.0
|
||||
- Clang/LLVM (Homebrew) 15.0.7 - available on `$(brew --prefix llvm@15)/bin/clang`
|
||||
@@ -22,76 +22,76 @@
|
||||
- GNU Fortran 12 (Homebrew GCC 12.4.0) - available by `gfortran-12` alias
|
||||
- GNU Fortran 13 (Homebrew GCC 13.3.0) - available by `gfortran-13` alias
|
||||
- GNU Fortran 14 (Homebrew GCC 14.2.0_1) - available by `gfortran-14` alias
|
||||
- Kotlin 2.1.0-release-394
|
||||
- Kotlin 2.1.10-release-473
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 20.18.1
|
||||
- Node.js 20.18.3
|
||||
- Perl 5.40.1
|
||||
- Python3 3.13.1
|
||||
- Ruby 3.0.7p220
|
||||
- Python3 3.13.2
|
||||
- Ruby 3.3.7
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.5.23
|
||||
- Bundler 2.6.5
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Homebrew 4.4.16
|
||||
- Homebrew 4.4.23
|
||||
- NPM 10.8.2
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 24.3.1 (python 3.13)
|
||||
- Pip3 25.0 (python 3.13)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.5.23
|
||||
- RubyGems 3.6.5
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.15
|
||||
- Apache Maven 3.9.9
|
||||
- Gradle 8.12
|
||||
- Gradle 8.13
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.27.1
|
||||
- bazel 8.0.1
|
||||
- azcopy 10.28.0
|
||||
- bazel 8.1.1
|
||||
- bazelisk 1.25.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.7.1
|
||||
- Git 2.48.1
|
||||
- Git LFS 3.6.1
|
||||
- GitHub CLI 2.65.0
|
||||
- GitHub CLI 2.67.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.7
|
||||
- jq 1.7.1
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.11.2
|
||||
- Packer 1.12.0
|
||||
- pkgconf 2.3.0
|
||||
- Unxip 3.1
|
||||
- yq 4.45.1
|
||||
- zstd 1.5.6
|
||||
- zstd 1.5.7
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.23.2
|
||||
- AWS SAM CLI 1.132.0
|
||||
- AWS Session Manager CLI 1.2.694.0
|
||||
- Azure CLI 2.68.0
|
||||
- AWS CLI 2.24.16
|
||||
- AWS SAM CLI 1.134.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- Bicep CLI 0.32.4
|
||||
- Cmake 3.31.4
|
||||
- Bicep CLI 0.33.93
|
||||
- Cmake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Fastlane 2.226.0
|
||||
- SwiftFormat 0.55.4
|
||||
- Xcbeautify 2.17.0
|
||||
- SwiftFormat 0.55.5
|
||||
- Xcbeautify 2.27.0
|
||||
- Xcode Command Line Tools 16.2.0.0.1.1733547573
|
||||
- Xcodes 1.6.0
|
||||
|
||||
### Linters
|
||||
|
||||
### Browsers
|
||||
- Safari 18.2 (19620.1.16.111.6)
|
||||
- SafariDriver 18.2 (19620.1.16.111.6)
|
||||
- Google Chrome 132.0.6834.84
|
||||
- Google Chrome for Testing 132.0.6834.83
|
||||
- ChromeDriver 132.0.6834.83
|
||||
- Selenium server 4.27.0
|
||||
- Safari 18.3 (19620.2.4.111.8)
|
||||
- SafariDriver 18.3 (19620.2.4.111.8)
|
||||
- Google Chrome 133.0.6943.142
|
||||
- Google Chrome for Testing 133.0.6943.141
|
||||
- ChromeDriver 133.0.6943.141
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -101,48 +101,47 @@
|
||||
| GECKOWEBDRIVER | |
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| --------------------- | -------------------- |
|
||||
| 11.0.25+9 | JAVA_HOME_11_arm64 |
|
||||
| 17.0.13+11 | JAVA_HOME_17_arm64 |
|
||||
| 21.0.5+11.0 (default) | JAVA_HOME_21_arm64 |
|
||||
| Version | Environment Variable |
|
||||
| -------------------- | -------------------- |
|
||||
| 11.0.26+4 | JAVA_HOME_11_arm64 |
|
||||
| 17.0.14+7 | JAVA_HOME_17_arm64 |
|
||||
| 21.0.6+7.0 (default) | JAVA_HOME_21_arm64 |
|
||||
|
||||
### Cached Tools
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.6
|
||||
- 3.2.6
|
||||
- 3.2.7
|
||||
- 3.3.7
|
||||
- 3.4.1
|
||||
- 3.4.2
|
||||
|
||||
#### Python
|
||||
- 3.11.9
|
||||
- 3.12.8
|
||||
- 3.13.1
|
||||
- 3.12.9
|
||||
- 3.13.2
|
||||
|
||||
#### Node.js
|
||||
- 18.20.5
|
||||
- 20.18.1
|
||||
- 22.13.0
|
||||
- 18.20.7
|
||||
- 20.18.3
|
||||
- 22.14.0
|
||||
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.10
|
||||
- 1.23.4
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.84.0
|
||||
- Rust 1.84.0
|
||||
- Rustdoc 1.84.0
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.27.1
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.84
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.6
|
||||
- PowerShell 7.4.7
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 12.4.0
|
||||
@@ -205,16 +204,16 @@
|
||||
| Simulator - watchOS 10.5 | watchsimulator10.5 | 15.4 |
|
||||
| Simulator - watchOS 11.1 | watchsimulator11.1 | 16.1 |
|
||||
| Simulator - watchOS 11.2 | watchsimulator11.2 | 16.2 |
|
||||
| Simulator - visionOS 1.0 | xrsimulator1.0 | 15.2 |
|
||||
| visionOS 1.0 | xros1.0 | 15.2 |
|
||||
| Simulator - visionOS 1.1 | xrsimulator1.1 | 15.3 |
|
||||
| visionOS 1.1 | xros1.1 | 15.3 |
|
||||
| visionOS 1.2 | xros1.2 | 15.4 |
|
||||
| Simulator - visionOS 1.2 | xrsimulator1.2 | 15.4 |
|
||||
| visionOS 2.1 | xros2.1 | 16.1 |
|
||||
| visionOS 2.2 | xros2.2 | 16.2 |
|
||||
| Simulator - visionOS 1.0 | xrsimulator1.0 | 15.2 |
|
||||
| Simulator - visionOS 1.1 | xrsimulator1.1 | 15.3 |
|
||||
| Simulator - visionOS 1.2 | xrsimulator1.2 | 15.4 |
|
||||
| Simulator - visionOS 2.1 | xrsimulator2.1 | 16.1 |
|
||||
| Simulator - visionOS 2.2 | xrsimulator2.2 | 16.2 |
|
||||
| visionOS 2.2 | xros2.2 | 16.2 |
|
||||
| DriverKit 23.0 | driverkit23.0 | 15.0.1 |
|
||||
| DriverKit 23.2 | driverkit23.2 | 15.1, 15.2 |
|
||||
| DriverKit 23.4 | driverkit23.4 | 15.3 |
|
||||
@@ -223,32 +222,35 @@
|
||||
| DriverKit 24.2 | driverkit24.2 | 16.2 |
|
||||
|
||||
#### Installed Simulators
|
||||
| OS | Simulators |
|
||||
| ------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| iOS 17.0 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
|
||||
| iOS 17.2 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
|
||||
| iOS 17.4 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 17.5 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.1 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| tvOS 17.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| watchOS 10.0 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.4 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.5 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.1 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| visionOS 1.0 | Apple Vision Pro |
|
||||
| visionOS 1.1 | Apple Vision Pro |
|
||||
| visionOS 1.2 | Apple Vision Pro |
|
||||
| OS | Simulators |
|
||||
| ------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| iOS 17.0 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
|
||||
| iOS 17.2 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
|
||||
| iOS 17.4 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 17.5 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.1 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.2 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| tvOS 17.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| watchOS 10.0 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.4 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.5 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.1 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| visionOS 1.0 | Apple Vision Pro |
|
||||
| visionOS 1.1 | Apple Vision Pro |
|
||||
| visionOS 1.2 | Apple Vision Pro |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 35.3.11 |
|
||||
| Android Emulator | 35.3.12 |
|
||||
| Android SDK Build-tools | 35.0.0 35.0.1<br>34.0.0<br>33.0.2 33.0.3 |
|
||||
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3) |
|
||||
| Android SDK Platform-Tools | 35.0.2 |
|
||||
|
||||
@@ -1,18 +1,16 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[ macOS ] .NET 7.x will be removed from macOS-13 and macOS-14 images on February 24,2025.](https://github.com/actions/runner-images/issues/11501) |
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from March, 18](https://github.com/actions/runner-images/issues/11486) |
|
||||
| [[macOS] Ruby version 3.0 will be removed from the images on Feb 17, 2025 and 3.3 will be set as default. ](https://github.com/actions/runner-images/issues/11345) |
|
||||
***
|
||||
# macOS 15
|
||||
- OS Version: macOS 15.3.1 (24D70)
|
||||
- Kernel Version: Darwin 24.3.0
|
||||
- Image Version: 20250226.766
|
||||
- Image Version: 20250312.1001
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.406, 9.0.102, 9.0.200
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.407, 9.0.102, 9.0.201
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 15.0.0
|
||||
- Clang/LLVM (Homebrew) 18.1.8 - available on `$(brew --prefix llvm@18)/bin/clang`
|
||||
@@ -32,7 +30,7 @@
|
||||
- Bundler 2.6.5
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Homebrew 4.4.22
|
||||
- Homebrew 4.4.24
|
||||
- NPM 10.9.2
|
||||
- Pip3 25.0 (python 3.13)
|
||||
- Pipx 1.7.1
|
||||
@@ -54,30 +52,31 @@
|
||||
- Curl 8.7.1
|
||||
- Git 2.48.1
|
||||
- Git LFS 3.6.1
|
||||
- GitHub CLI 2.67.0
|
||||
- GitHub CLI 2.68.1
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.7
|
||||
- jq 1.7.1
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.12.0
|
||||
- pkgconf 2.3.0
|
||||
- pkgconf 2.4.3
|
||||
- Unxip 3.1
|
||||
- yq 4.45.1
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.12.1
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.24.13
|
||||
- AWS SAM CLI 1.134.0
|
||||
- AWS CLI 2.24.22
|
||||
- AWS SAM CLI 1.135.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.69.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- Bicep CLI 0.33.93
|
||||
- Cmake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Fastlane 2.226.0
|
||||
- SwiftFormat 0.55.5
|
||||
- Xcbeautify 2.26.0
|
||||
- Xcbeautify 2.27.0
|
||||
- Xcode Command Line Tools 16.2.0.0.1.1733547573
|
||||
- Xcodes 1.6.0
|
||||
|
||||
@@ -86,10 +85,10 @@
|
||||
### Browsers
|
||||
- Safari 18.3 (20620.2.4.11.5)
|
||||
- SafariDriver 18.3 (20620.2.4.11.5)
|
||||
- Google Chrome 133.0.6943.142
|
||||
- Google Chrome for Testing 133.0.6943.141
|
||||
- ChromeDriver 133.0.6943.141
|
||||
- Selenium server 4.28.1
|
||||
- Google Chrome 134.0.6998.89
|
||||
- Google Chrome for Testing 134.0.6998.88
|
||||
- ChromeDriver 134.0.6998.88
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -126,13 +125,14 @@
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
- 1.23.7
|
||||
- 1.24.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.27.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.85
|
||||
@@ -147,12 +147,13 @@
|
||||
- PSScriptAnalyzer: 1.23.0
|
||||
|
||||
### Xcode
|
||||
| Version | Build | Path | Symlinks |
|
||||
| -------------- | -------- | ---------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
| 16.2 | 16C5032a | /Applications/Xcode_16.2.app | /Applications/Xcode_16.2.0.app |
|
||||
| 16.1 | 16B40 | /Applications/Xcode_16.1.app | /Applications/Xcode_16.1.0.app |
|
||||
| 16.0 (default) | 16A242d | /Applications/Xcode_16.app | /Applications/Xcode_16.0.0.app<br>/Applications/Xcode_16.0.app<br>/Applications/Xcode.app |
|
||||
| 15.4 | 15F31d | /Applications/Xcode_15.4.app | /Applications/Xcode_15.4.0.app |
|
||||
| Version | Build | Path | Symlinks |
|
||||
| -------------- | -------- | ----------------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
| 16.3 (beta) | 16E5121h | /Applications/Xcode_16.3_beta_2.app | /Applications/Xcode_16.3.0.app<br>/Applications/Xcode_16.3.app |
|
||||
| 16.2 | 16C5032a | /Applications/Xcode_16.2.app | /Applications/Xcode_16.2.0.app |
|
||||
| 16.1 | 16B40 | /Applications/Xcode_16.1.app | /Applications/Xcode_16.1.0.app |
|
||||
| 16.0 (default) | 16A242d | /Applications/Xcode_16.app | /Applications/Xcode_16.0.0.app<br>/Applications/Xcode_16.0.app<br>/Applications/Xcode.app |
|
||||
| 15.4 | 15F31d | /Applications/Xcode_15.4.app | /Applications/Xcode_15.4.0.app |
|
||||
|
||||
#### Installed SDKs
|
||||
| SDK | SDK Name | Xcode Version |
|
||||
@@ -161,68 +162,84 @@
|
||||
| macOS 15.0 | macosx15.0 | 16.0 |
|
||||
| macOS 15.1 | macosx15.1 | 16.1 |
|
||||
| macOS 15.2 | macosx15.2 | 16.2 |
|
||||
| macOS 15.4 | macosx15.4 | 16.3 |
|
||||
| iOS 17.5 | iphoneos17.5 | 15.4 |
|
||||
| iOS 18.0 | iphoneos18.0 | 16.0 |
|
||||
| iOS 18.1 | iphoneos18.1 | 16.1 |
|
||||
| iOS 18.2 | iphoneos18.2 | 16.2 |
|
||||
| iOS 18.4 | iphoneos18.4 | 16.3 |
|
||||
| Simulator - iOS 17.5 | iphonesimulator17.5 | 15.4 |
|
||||
| Simulator - iOS 18.0 | iphonesimulator18.0 | 16.0 |
|
||||
| Simulator - iOS 18.1 | iphonesimulator18.1 | 16.1 |
|
||||
| Simulator - iOS 18.2 | iphonesimulator18.2 | 16.2 |
|
||||
| Simulator - iOS 18.4 | iphonesimulator18.4 | 16.3 |
|
||||
| tvOS 17.5 | appletvos17.5 | 15.4 |
|
||||
| tvOS 18.0 | appletvos18.0 | 16.0 |
|
||||
| tvOS 18.1 | appletvos18.1 | 16.1 |
|
||||
| tvOS 18.2 | appletvos18.2 | 16.2 |
|
||||
| tvOS 18.4 | appletvos18.4 | 16.3 |
|
||||
| Simulator - tvOS 17.5 | appletvsimulator17.5 | 15.4 |
|
||||
| Simulator - tvOS 18.0 | appletvsimulator18.0 | 16.0 |
|
||||
| Simulator - tvOS 18.1 | appletvsimulator18.1 | 16.1 |
|
||||
| Simulator - tvOS 18.2 | appletvsimulator18.2 | 16.2 |
|
||||
| Simulator - tvOS 18.4 | appletvsimulator18.4 | 16.3 |
|
||||
| watchOS 10.5 | watchos10.5 | 15.4 |
|
||||
| watchOS 11.0 | watchos11.0 | 16.0 |
|
||||
| watchOS 11.1 | watchos11.1 | 16.1 |
|
||||
| watchOS 11.2 | watchos11.2 | 16.2 |
|
||||
| watchOS 11.4 | watchos11.4 | 16.3 |
|
||||
| Simulator - watchOS 10.5 | watchsimulator10.5 | 15.4 |
|
||||
| Simulator - watchOS 11.0 | watchsimulator11.0 | 16.0 |
|
||||
| Simulator - watchOS 11.1 | watchsimulator11.1 | 16.1 |
|
||||
| Simulator - watchOS 11.2 | watchsimulator11.2 | 16.2 |
|
||||
| Simulator - watchOS 11.4 | watchsimulator11.4 | 16.3 |
|
||||
| visionOS 1.2 | xros1.2 | 15.4 |
|
||||
| visionOS 2.0 | xros2.0 | 16.0 |
|
||||
| visionOS 2.1 | xros2.1 | 16.1 |
|
||||
| visionOS 2.2 | xros2.2 | 16.2 |
|
||||
| visionOS 2.4 | xros2.4 | 16.3 |
|
||||
| Simulator - visionOS 1.2 | xrsimulator1.2 | 15.4 |
|
||||
| Simulator - visionOS 2.0 | xrsimulator2.0 | 16.0 |
|
||||
| Simulator - visionOS 2.1 | xrsimulator2.1 | 16.1 |
|
||||
| Simulator - visionOS 2.2 | xrsimulator2.2 | 16.2 |
|
||||
| Simulator - visionOS 2.4 | xrsimulator2.4 | 16.3 |
|
||||
| DriverKit 23.5 | driverkit23.5 | 15.4 |
|
||||
| DriverKit 24.0 | driverkit24.0 | 16.0 |
|
||||
| DriverKit 24.1 | driverkit24.1 | 16.1 |
|
||||
| DriverKit 24.2 | driverkit24.2 | 16.2 |
|
||||
| DriverKit 24.4 | driverkit24.4 | 16.3 |
|
||||
|
||||
#### Installed Simulators
|
||||
| OS | Simulators |
|
||||
| ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| iOS 17.5 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.0 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.1 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.3 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| tvOS 17.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| watchOS 10.5 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.0 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.1 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| visionOS 1.2 | Apple Vision Pro |
|
||||
| visionOS 2.0 | Apple Vision Pro |
|
||||
| visionOS 2.1 | Apple Vision Pro |
|
||||
| visionOS 2.3 | Apple Vision Pro |
|
||||
| OS | Simulators |
|
||||
| ------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| iOS 17.5 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.0 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.1 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.2 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.3 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.4 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| tvOS 17.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| watchOS 10.5 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.0 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.1 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.4 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| visionOS 1.2 | Apple Vision Pro |
|
||||
| visionOS 2.0 | Apple Vision Pro |
|
||||
| visionOS 2.1 | Apple Vision Pro |
|
||||
| visionOS 2.2 | Apple Vision Pro |
|
||||
| visionOS 2.3 | Apple Vision Pro |
|
||||
| visionOS 2.4 | Apple Vision Pro |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| Android Emulator | 35.3.12 |
|
||||
| Android Emulator | 35.4.9 |
|
||||
| Android SDK Build-tools | 35.0.0 35.0.1 |
|
||||
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1) |
|
||||
| Android SDK Platform-Tools | 35.0.2 |
|
||||
|
||||
@@ -90,6 +90,12 @@ if [[ ! "$(automationmodetool)" =~ "DOES NOT REQUIRE" ]]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Fix sudoers file permissions
|
||||
sudo chmod 440 /etc/sudoers.d/*
|
||||
|
||||
# Add NOPASSWD for the current user to sudoers
|
||||
sudo sed -i '' 's/%admin ALL = (ALL) ALL/%admin ALL = (ALL) NOPASSWD: ALL/g' /etc/sudoers
|
||||
|
||||
# Create symlink for tests running
|
||||
if [[ ! -d "/usr/local/bin" ]];then
|
||||
sudo mkdir -p -m 775 /usr/local/bin
|
||||
|
||||
@@ -12,7 +12,7 @@ close_finder_window
|
||||
# Remove Parallels Desktop
|
||||
# https://github.com/actions/runner-images/issues/6105
|
||||
# https://github.com/actions/runner-images/issues/10143
|
||||
if is_SonomaX64 || is_VenturaX64; then
|
||||
if is_SonomaX64 || is_VenturaX64 || is_SequoiaX64; then
|
||||
brew uninstall parallels
|
||||
fi
|
||||
|
||||
|
||||
@@ -35,13 +35,13 @@ for package in $cask_packages; do
|
||||
done
|
||||
|
||||
# Load "Parallels International GmbH"
|
||||
if is_SonomaX64 || is_VenturaX64; then
|
||||
if is_SonomaX64 || is_VenturaX64 || is_SequoiaX64; then
|
||||
sudo kextload /Applications/Parallels\ Desktop.app/Contents/Library/Extensions/10.9/prl_hypervisor.kext || true
|
||||
fi
|
||||
|
||||
# Execute AppleScript to change security preferences for macOS12, macOS13 and macOS14
|
||||
# Execute AppleScript to change security preferences for macOS12, macOS13, macOS14 and macOS15
|
||||
# System Preferences -> Security & Privacy -> General -> Unlock -> Allow -> Not now
|
||||
if is_SonomaX64 || is_VenturaX64; then
|
||||
if is_SonomaX64 || is_VenturaX64 || is_SequoiaX64; then
|
||||
for retry in {4..0}; do
|
||||
echo "Executing AppleScript to change security preferences. Retries left: $retry"
|
||||
{
|
||||
@@ -54,6 +54,9 @@ if is_SonomaX64 || is_VenturaX64; then
|
||||
if is_SonomaX64; then
|
||||
osascript $HOME/utils/confirm-identified-developers-macos14.scpt $USER_PASSWORD
|
||||
fi
|
||||
if is_SequoiaX64; then
|
||||
osascript $HOME/utils/confirm-identified-developers-macos15.scpt $USER_PASSWORD
|
||||
fi
|
||||
} && break
|
||||
|
||||
if [[ $retry -eq 0 ]]; then
|
||||
@@ -67,7 +70,7 @@ if is_SonomaX64 || is_VenturaX64; then
|
||||
fi
|
||||
|
||||
# Validate "Parallels International GmbH" kext
|
||||
if is_SonomaX64 || is_VenturaX64; then
|
||||
if is_SonomaX64 || is_VenturaX64 || is_SequoiaX64; then
|
||||
|
||||
echo "Closing System Settings window if it is still opened"
|
||||
killall "System Settings" || true
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash -e -o pipefail
|
||||
################################################################################
|
||||
## File: install-runner-package.sh
|
||||
## Desc: Download and Install runner package
|
||||
################################################################################
|
||||
|
||||
# Source the helpers for use with the script
|
||||
source ~/utils/utils.sh
|
||||
|
||||
AGENT_PATH="/opt/runner-cache"
|
||||
arch=$(get_arch)
|
||||
download_url=$(resolve_github_release_asset_url "actions/runner" 'test("actions-runner-osx-'"$arch"'-[0-9]+\\.[0-9]{3}\\.[0-9]+\\.tar\\.gz$")' "latest" "$API_PAT")
|
||||
archive_name="${download_url##*/}"
|
||||
archive_path=$(download_with_retry "$download_url")
|
||||
|
||||
if [[ ! -d $AGENT_PATH ]]; then
|
||||
sudo mkdir -p -m 775 $AGENT_PATH
|
||||
sudo chown $USER:admin $AGENT_PATH
|
||||
fi
|
||||
|
||||
sudo mv "$archive_path" "$AGENT_PATH/$archive_name"
|
||||
@@ -97,6 +97,7 @@ $utilities.AddToolVersion("pkgconf", $(Get-PKGConfVersion))
|
||||
$utilities.AddToolVersion("Unxip", $(Get-UnxipVersion))
|
||||
$utilities.AddToolVersion("yq", $(Get-YqVersion))
|
||||
$utilities.AddToolVersion("zstd", $(Get-ZstdVersion))
|
||||
$utilities.AddToolVersion("Ninja", $(Get-NinjaVersion))
|
||||
|
||||
# Tools
|
||||
$tools = $installedSoftware.AddHeader("Tools")
|
||||
@@ -173,12 +174,15 @@ $android.AddTable($androidTable)
|
||||
$androidEnv = $android.AddHeader("Environment variables")
|
||||
$androidEnv.AddTable($(Build-AndroidEnvironmentTable))
|
||||
|
||||
if ($os.IsSonoma -or $os.IsVentura) {
|
||||
if ($os.IsSonoma -or $os.IsVentura -or $os.IsSequoiaX64) {
|
||||
$miscellaneous = $installedSoftware.AddHeader("Miscellaneous")
|
||||
}
|
||||
|
||||
if ($os.IsSonoma -or $os.IsVentura) {
|
||||
$miscellaneous.AddToolVersion("Tcl/Tk", $(Get-TclTkVersion))
|
||||
}
|
||||
|
||||
if ($os.IsSonomaX64 -or $os.IsVenturaX64) {
|
||||
if ($os.IsSonomaX64 -or $os.IsVenturaX64 -or $os.IsSequoiaX64) {
|
||||
|
||||
Write-Host "Adding environment variables for parallels"
|
||||
|
||||
|
||||
@@ -409,3 +409,7 @@ function Get-UnxipVersion {
|
||||
$unxipVersion = Run-Command "unxip --version" | Take-Part -Part 1
|
||||
return $unxipVersion
|
||||
}
|
||||
|
||||
function Get-NinjaVersion {
|
||||
return $(ninja --version)
|
||||
}
|
||||
|
||||
@@ -194,7 +194,7 @@ function Install-AdditionalSimulatorRuntimes {
|
||||
}
|
||||
|
||||
# Validate and install specified runtimes
|
||||
$invalidRuntimes = $Runtimes | Where-Object { $_ -notin $validRuntimes }
|
||||
$invalidRuntimes = $Runtimes | Where-Object { $_ -notmatch "^($( $validRuntimes -join '|' ))(\s.*|$)" }
|
||||
if ($invalidRuntimes) {
|
||||
throw "Error: Invalid runtimes detected: $($invalidRuntimes -join ', '). Valid values are: $validRuntimes."
|
||||
}
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
# This AppleScript clicks "Allow" for "System Software from developer "Parallels International GmbH"
|
||||
# Steps:
|
||||
# - Open System Settings -> Privacy & Security
|
||||
# - Click 'Allow' for 'System Software from developer "Parallels International GmbH'
|
||||
# - Enter password for runner
|
||||
|
||||
on run argv
|
||||
set userpassword to item 1 of argv
|
||||
|
||||
tell application "System Settings"
|
||||
activate
|
||||
delay 5
|
||||
end tell
|
||||
|
||||
tell application "System Events"
|
||||
tell process "System Settings"
|
||||
set frontmost to true
|
||||
repeat until exists window 1
|
||||
delay 2
|
||||
end repeat
|
||||
|
||||
tell splitter group 1 of group 1 of window 1
|
||||
select row 27 of outline 1 of scroll area 1 of group 1
|
||||
delay 5
|
||||
click UI element 1 of row 27 of outline 1 of scroll area 1 of group 1
|
||||
delay 5
|
||||
keystroke userpassword
|
||||
delay 5
|
||||
keystroke return
|
||||
delay 5
|
||||
end tell
|
||||
end tell
|
||||
end tell
|
||||
end run
|
||||
@@ -148,3 +148,25 @@ Describe "pkgconf" {
|
||||
"pkgconf --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Ninja" {
|
||||
New-item -Path "/tmp/ninjaproject" -ItemType Directory -Force
|
||||
Set-Location '/tmp/ninjaproject'
|
||||
@'
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(NinjaTest NONE)
|
||||
'@ | Out-File -FilePath "./CMakeLists.txt"
|
||||
|
||||
It "Make a simple ninja project" {
|
||||
"cmake -GNinja /tmp/ninjaproject" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
It "build.ninja file should exist" {
|
||||
$buildFilePath = Join-Path "/tmp/ninjaproject" "build.ninja"
|
||||
$buildFilePath | Should -Exist
|
||||
}
|
||||
|
||||
It "Ninja" {
|
||||
"ninja --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
@@ -87,3 +87,12 @@ Describe "Unxip" {
|
||||
"unxip --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Sudoers" {
|
||||
It "Sudo Cache" {
|
||||
"sudo -v" | Should -ReturnZeroExitCode
|
||||
}
|
||||
It "Sudoers files" {
|
||||
"sudo visudo -c" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
Describe "RunnerCache" {
|
||||
Context "runner cache directory not empty" {
|
||||
It "<RunnerCachePath> not empty" -TestCases @{ RunnerCachePath = "/opt/runner-cache" } {
|
||||
(Get-ChildItem -Path "$RunnerCachePath/*.tar.gz" -Recurse).Count | Should -BeGreaterThan 0
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -236,6 +236,7 @@ build {
|
||||
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
|
||||
scripts = [
|
||||
"${path.root}/../scripts/build/install-actions-cache.sh",
|
||||
"${path.root}/../scripts/build/install-runner-package.sh",
|
||||
"${path.root}/../scripts/build/install-llvm.sh",
|
||||
"${path.root}/../scripts/build/install-swiftlint.sh",
|
||||
"${path.root}/../scripts/build/install-openjdk.sh",
|
||||
|
||||
@@ -237,6 +237,7 @@ build {
|
||||
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
|
||||
scripts = [
|
||||
"${path.root}/../scripts/build/install-actions-cache.sh",
|
||||
"${path.root}/../scripts/build/install-runner-package.sh",
|
||||
"${path.root}/../scripts/build/install-llvm.sh",
|
||||
"${path.root}/../scripts/build/install-openjdk.sh",
|
||||
"${path.root}/../scripts/build/install-aws-tools.sh",
|
||||
|
||||
@@ -235,6 +235,7 @@ build {
|
||||
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
|
||||
scripts = [
|
||||
"${path.root}/../scripts/build/install-actions-cache.sh",
|
||||
"${path.root}/../scripts/build/install-runner-package.sh",
|
||||
"${path.root}/../scripts/build/install-llvm.sh",
|
||||
"${path.root}/../scripts/build/install-swiftlint.sh",
|
||||
"${path.root}/../scripts/build/install-openjdk.sh",
|
||||
|
||||
@@ -236,6 +236,7 @@ build {
|
||||
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
|
||||
scripts = [
|
||||
"${path.root}/../scripts/build/install-actions-cache.sh",
|
||||
"${path.root}/../scripts/build/install-runner-package.sh",
|
||||
"${path.root}/../scripts/build/install-llvm.sh",
|
||||
"${path.root}/../scripts/build/install-openjdk.sh",
|
||||
"${path.root}/../scripts/build/install-aws-tools.sh",
|
||||
|
||||
@@ -156,6 +156,7 @@ build {
|
||||
inline = [
|
||||
"mv ${local.image_folder}/docs-gen ${local.image_folder}/software-report",
|
||||
"mkdir ~/utils",
|
||||
"mv ${local.image_folder}/helpers/confirm-identified-developers-macos15.scpt ~/utils",
|
||||
"mv ${local.image_folder}/helpers/invoke-tests.sh ~/utils",
|
||||
"mv ${local.image_folder}/helpers/utils.sh ~/utils"
|
||||
]
|
||||
@@ -233,6 +234,7 @@ build {
|
||||
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
|
||||
scripts = [
|
||||
"${path.root}/../scripts/build/install-actions-cache.sh",
|
||||
"${path.root}/../scripts/build/install-runner-package.sh",
|
||||
"${path.root}/../scripts/build/install-llvm.sh",
|
||||
"${path.root}/../scripts/build/install-swiftlint.sh",
|
||||
"${path.root}/../scripts/build/install-openjdk.sh",
|
||||
|
||||
@@ -235,6 +235,7 @@ build {
|
||||
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
|
||||
scripts = [
|
||||
"${path.root}/../scripts/build/install-actions-cache.sh",
|
||||
"${path.root}/../scripts/build/install-runner-package.sh",
|
||||
"${path.root}/../scripts/build/install-llvm.sh",
|
||||
"${path.root}/../scripts/build/install-openjdk.sh",
|
||||
"${path.root}/../scripts/build/install-aws-tools.sh",
|
||||
|
||||
@@ -81,6 +81,7 @@
|
||||
"swiftformat",
|
||||
"tcl-tk@8",
|
||||
"zstd",
|
||||
"ninja",
|
||||
"gmp",
|
||||
"yq",
|
||||
"xcbeautify",
|
||||
@@ -192,7 +193,8 @@
|
||||
"versions": [
|
||||
"1.21.*",
|
||||
"1.22.*",
|
||||
"1.23.*"
|
||||
"1.23.*",
|
||||
"1.24.*"
|
||||
]
|
||||
},
|
||||
"arm64": {
|
||||
@@ -200,7 +202,8 @@
|
||||
"versions": [
|
||||
"1.21.*",
|
||||
"1.22.*",
|
||||
"1.23.*"
|
||||
"1.23.*",
|
||||
"1.24.*"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"default": "15.4",
|
||||
"x64": {
|
||||
"versions": [
|
||||
{ "link": "16.2", "version": "16.2+16C5032a", "install_runtimes": ["iOS", "watchOS", "tvOS"], "sha256": "0e367d06eb7c334ea143bada5e4422f56688aabff571bedf0d2ad9434b7290de"},
|
||||
{ "link": "16.2", "version": "16.2+16C5032a", "install_runtimes": ["iOS -buildVersion 18.2", "watchOS", "tvOS"], "sha256": "0e367d06eb7c334ea143bada5e4422f56688aabff571bedf0d2ad9434b7290de"},
|
||||
{ "link": "16.1", "version": "16.1+16B40", "install_runtimes": ["iOS", "watchOS", "tvOS"], "sha256": "8ca961d55981f983d21b99a95a6b0ac04905b837f6e11346ee86d28f12afe720"},
|
||||
{ "link": "15.4", "version": "15.4.0+15F31d", "install_runtimes": "true", "sha256": "82d3d61804ff3f4c7c82085e91dc701037ddaa770e542848b2477e22f4e8aa7a"},
|
||||
{ "link": "15.3", "version": "15.3.0+15E204a", "install_runtimes": "true", "sha256": "f13f6a2e2df432c3008e394640b8549a18c285acd7fd148d6c4bac8c3a5af234"},
|
||||
@@ -14,7 +14,7 @@
|
||||
},
|
||||
"arm64":{
|
||||
"versions": [
|
||||
{ "link": "16.2", "version": "16.2+16C5032a", "install_runtimes": ["iOS", "watchOS", "tvOS"], "sha256": "0e367d06eb7c334ea143bada5e4422f56688aabff571bedf0d2ad9434b7290de"},
|
||||
{ "link": "16.2", "version": "16.2+16C5032a", "install_runtimes": ["iOS -buildVersion 18.2", "watchOS", "tvOS"], "sha256": "0e367d06eb7c334ea143bada5e4422f56688aabff571bedf0d2ad9434b7290de"},
|
||||
{ "link": "16.1", "version": "16.1+16B40", "install_runtimes": ["iOS", "watchOS", "tvOS"], "sha256": "8ca961d55981f983d21b99a95a6b0ac04905b837f6e11346ee86d28f12afe720"},
|
||||
{ "link": "15.4", "version": "15.4.0+15F31d", "install_runtimes": "true", "sha256": "82d3d61804ff3f4c7c82085e91dc701037ddaa770e542848b2477e22f4e8aa7a"},
|
||||
{ "link": "15.3", "version": "15.3.0+15E204a", "install_runtimes": "true", "sha256": "f13f6a2e2df432c3008e394640b8549a18c285acd7fd148d6c4bac8c3a5af234"},
|
||||
@@ -84,6 +84,7 @@
|
||||
"swiftformat",
|
||||
"tcl-tk@8",
|
||||
"zstd",
|
||||
"ninja",
|
||||
"gmp",
|
||||
"yq",
|
||||
"unxip",
|
||||
@@ -180,7 +181,8 @@
|
||||
"versions": [
|
||||
"1.21.*",
|
||||
"1.22.*",
|
||||
"1.23.*"
|
||||
"1.23.*",
|
||||
"1.24.*"
|
||||
]
|
||||
},
|
||||
"arm64": {
|
||||
@@ -188,7 +190,8 @@
|
||||
"versions": [
|
||||
"1.21.*",
|
||||
"1.22.*",
|
||||
"1.23.*"
|
||||
"1.23.*",
|
||||
"1.24.*"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,17 +3,40 @@
|
||||
"default": "16",
|
||||
"x64": {
|
||||
"versions": [
|
||||
{ "link": "16.2", "version": "16.2+16C5032a", "install_runtimes": "true", "sha256": "0e367d06eb7c334ea143bada5e4422f56688aabff571bedf0d2ad9434b7290de"},
|
||||
{ "link": "16.1", "version": "16.1+16B40", "install_runtimes": "true", "sha256": "8ca961d55981f983d21b99a95a6b0ac04905b837f6e11346ee86d28f12afe720"},
|
||||
{ "link": "16", "version": "16.0.0+16A242d", "symlinks": ["16.0"], "install_runtimes": "true", "sha256": "4a26c3d102a55c7222fb145e0ee1503249c9c26c6e02dc64d783c8810b37b1e3"},
|
||||
{
|
||||
"link": "16.3_beta_2", "version": "16.3.0-Beta.2+16E5121h", "symlinks": ["16.3"],
|
||||
"install_runtimes":
|
||||
[
|
||||
"iOS -buildVersion 18.0", "iOS -buildVersion 18.1", "iOS -buildVersion 18.2", "iOS -buildVersion 18.3.1", "iOS -buildVersion 22E5216h",
|
||||
"watchOS -buildVersion 11.0", "watchOS -buildVersion 11.1", "watchOS -buildVersion 11.2", "watchOS -buildVersion 22T5212l",
|
||||
"tvOS -buildVersion 18.0", "tvOS -buildVersion 18.1", "tvOS -buildVersion 18.2", "tvOS -buildVersion 22L5218l"
|
||||
],
|
||||
"sha256": "f4bb80c2e93d3561ecbabc82d1a92c830d831c96afc48944baa8116e3fd0013d"
|
||||
},
|
||||
{ "link": "16.2", "version": "16.2+16C5032a", "install_runtimes": "false", "sha256": "0e367d06eb7c334ea143bada5e4422f56688aabff571bedf0d2ad9434b7290de"},
|
||||
{ "link": "16.1", "version": "16.1+16B40", "install_runtimes": "false", "sha256": "8ca961d55981f983d21b99a95a6b0ac04905b837f6e11346ee86d28f12afe720"},
|
||||
{ "link": "16", "version": "16.0.0+16A242d", "symlinks": ["16.0"], "install_runtimes": "false", "sha256": "4a26c3d102a55c7222fb145e0ee1503249c9c26c6e02dc64d783c8810b37b1e3"},
|
||||
{ "link": "15.4", "version": "15.4.0+15F31d", "install_runtimes": "true", "sha256": "82d3d61804ff3f4c7c82085e91dc701037ddaa770e542848b2477e22f4e8aa7a"}
|
||||
]
|
||||
},
|
||||
"arm64":{
|
||||
"versions": [
|
||||
{ "link": "16.2", "version": "16.2+16C5032a", "install_runtimes": "true", "sha256": "0e367d06eb7c334ea143bada5e4422f56688aabff571bedf0d2ad9434b7290de"},
|
||||
{ "link": "16.1", "version": "16.1+16B40", "install_runtimes": "true", "sha256": "8ca961d55981f983d21b99a95a6b0ac04905b837f6e11346ee86d28f12afe720"},
|
||||
{ "link": "16", "version": "16.0.0+16A242d", "symlinks": ["16.0"], "install_runtimes": "true", "sha256": "4a26c3d102a55c7222fb145e0ee1503249c9c26c6e02dc64d783c8810b37b1e3"},
|
||||
{
|
||||
"link": "16.3_beta_2",
|
||||
"version": "16.3.0-Beta.2+16E5121h",
|
||||
"symlinks": ["16.3"],
|
||||
"install_runtimes":
|
||||
[
|
||||
"iOS -buildVersion 18.0", "iOS -buildVersion 18.1", "iOS -buildVersion 18.2", "iOS -buildVersion 18.3.1", "iOS -buildVersion 22E5216h",
|
||||
"watchOS -buildVersion 11.0", "watchOS -buildVersion 11.1", "watchOS -buildVersion 11.2", "watchOS -buildVersion 22T5212l",
|
||||
"tvOS -buildVersion 18.0", "tvOS -buildVersion 18.1", "tvOS -buildVersion 18.2", "tvOS -buildVersion 22L5218l",
|
||||
"visionOS -buildVersion 2.0", "visionOS -buildVersion 2.1", "visionOS -buildVersion 2.2", "visionOS -buildVersion 2.3", "visionOS -buildVersion 22O5215f"
|
||||
],
|
||||
"sha256": "f4bb80c2e93d3561ecbabc82d1a92c830d831c96afc48944baa8116e3fd0013d"
|
||||
},
|
||||
{ "link": "16.2", "version": "16.2+16C5032a", "install_runtimes": "false", "sha256": "0e367d06eb7c334ea143bada5e4422f56688aabff571bedf0d2ad9434b7290de"},
|
||||
{ "link": "16.1", "version": "16.1+16B40", "install_runtimes": "false", "sha256": "8ca961d55981f983d21b99a95a6b0ac04905b837f6e11346ee86d28f12afe720"},
|
||||
{ "link": "16", "version": "16.0.0+16A242d", "symlinks": ["16.0"], "install_runtimes": "false", "sha256": "4a26c3d102a55c7222fb145e0ee1503249c9c26c6e02dc64d783c8810b37b1e3"},
|
||||
{ "link": "15.4", "version": "15.4.0+15F31d", "install_runtimes": "true", "sha256": "82d3d61804ff3f4c7c82085e91dc701037ddaa770e542848b2477e22f4e8aa7a"}
|
||||
]
|
||||
}
|
||||
@@ -77,6 +100,7 @@
|
||||
"pkgconf",
|
||||
"swiftformat",
|
||||
"zstd",
|
||||
"ninja",
|
||||
"gmp",
|
||||
"yq",
|
||||
"unxip",
|
||||
@@ -84,7 +108,7 @@
|
||||
"xcodes"
|
||||
],
|
||||
"cask_packages": [
|
||||
""
|
||||
"parallels"
|
||||
]
|
||||
},
|
||||
"gcc": {
|
||||
@@ -173,7 +197,8 @@
|
||||
"versions": [
|
||||
"1.21.*",
|
||||
"1.22.*",
|
||||
"1.23.*"
|
||||
"1.23.*",
|
||||
"1.24.*"
|
||||
]
|
||||
},
|
||||
"arm64": {
|
||||
@@ -181,7 +206,8 @@
|
||||
"versions": [
|
||||
"1.21.*",
|
||||
"1.22.*",
|
||||
"1.23.*"
|
||||
"1.23.*",
|
||||
"1.24.*"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Ubuntu] Breaking change : PostgreSQL version 14.* for Ubuntu 22.04, PostgreSQL version 16.* for Ubuntu 24.04 will be updated to version 17.* from 2025-05-09](https://github.com/actions/runner-images/issues/11723) |
|
||||
***
|
||||
# Ubuntu 20.04
|
||||
- OS Version: 20.04.6 LTS
|
||||
- Kernel Version: 5.15.0-1079-azure
|
||||
- Image Version: 20250223.1.0
|
||||
- Image Version: 20250309.1.0
|
||||
- Systemd version: 245.4-4ubuntu3.24
|
||||
|
||||
## Installed Software
|
||||
@@ -29,7 +33,7 @@
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.17.1
|
||||
- Homebrew 4.4.21
|
||||
- Homebrew 4.4.23
|
||||
- Miniconda 25.1.1
|
||||
- Npm 10.8.2
|
||||
- NuGet 6.6.1.2
|
||||
@@ -37,7 +41,7 @@
|
||||
- Pip3 20.0.2
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.1.2
|
||||
- Vcpkg (build from commit 5f8c424e26)
|
||||
- Vcpkg (build from commit 300239058e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -56,24 +60,24 @@ to accomplish this.
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.7
|
||||
- Gradle 8.12.1
|
||||
- Lerna 8.2.0
|
||||
- Gradle 8.13
|
||||
- Lerna 8.2.1
|
||||
- Maven 3.9.9
|
||||
- Sbt 1.10.7
|
||||
- Sbt 1.10.10
|
||||
|
||||
### Tools
|
||||
- Ansible 2.13.13
|
||||
- apt-fast 1.10.0
|
||||
- AzCopy 10.28.0 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 8.1.0
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.33.93
|
||||
- Buildah 1.22.3
|
||||
- CMake 3.31.5
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker Amazon ECR Credential Helper 0.9.1
|
||||
- Docker Compose v2 2.27.1
|
||||
- Docker-Buildx 0.21.1
|
||||
- Docker-Buildx 0.21.2
|
||||
- Docker Client 26.1.3
|
||||
- Docker Server 26.1.3
|
||||
- Fastlane 2.226.0
|
||||
@@ -99,29 +103,30 @@ to accomplish this.
|
||||
- Parcel 2.13.3
|
||||
- PhantomJS 2.1.1 2.1.1
|
||||
- Podman 3.4.2
|
||||
- Pulumi 3.150.0
|
||||
- R 4.4.2
|
||||
- Pulumi 3.154.0
|
||||
- R 4.4.3
|
||||
- Skopeo 1.5.0
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- SVN 1.13.0
|
||||
- Terraform 1.10.5
|
||||
- Terraform 1.11.1
|
||||
- yamllint 1.35.1
|
||||
- yq 4.45.1
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.12.1
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.174
|
||||
- AWS CLI 2.24.10
|
||||
- AWS CLI 2.24.20
|
||||
- AWS CLI Session Manager Plugin 1.2.707.0
|
||||
- AWS SAM CLI 1.134.0
|
||||
- Azure CLI 2.69.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- GitHub CLI 2.67.0
|
||||
- Google Cloud CLI 511.0.0
|
||||
- Netlify CLI 18.1.0
|
||||
- GitHub CLI 2.68.1
|
||||
- Google Cloud CLI 513.0.0
|
||||
- Netlify CLI 19.0.2
|
||||
- OpenShift CLI 4.15.19
|
||||
- ORAS CLI 1.2.2
|
||||
- Vercel CLI 41.2.0
|
||||
- Vercel CLI 41.3.2
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
@@ -133,7 +138,7 @@ to accomplish this.
|
||||
|
||||
### PHP Tools
|
||||
- PHP: 7.4.33, 8.0.30, 8.1.31, 8.2.27, 8.3.17
|
||||
- Composer 2.8.5
|
||||
- Composer 2.8.6
|
||||
- PHPUnit 8.5.41
|
||||
```
|
||||
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
@@ -149,25 +154,25 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.27.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Bindgen 0.71.1
|
||||
- Cargo audit 0.21.1
|
||||
- Cargo audit 0.21.2
|
||||
- Cargo clippy 0.1.85
|
||||
- Cargo outdated 0.16.0
|
||||
- Cbindgen 0.28.0
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 133.0.6943.126
|
||||
- ChromeDriver 133.0.6943.126
|
||||
- Chromium 133.0.6943.0
|
||||
- Microsoft Edge 133.0.3065.82
|
||||
- Microsoft Edge WebDriver 133.0.3065.82
|
||||
- Google Chrome 134.0.6998.35
|
||||
- ChromeDriver 134.0.6998.35
|
||||
- Chromium 134.0.6998.0
|
||||
- Microsoft Edge 134.0.3124.51
|
||||
- Microsoft Edge WebDriver 134.0.3124.51
|
||||
- Selenium server 4.29.0
|
||||
- Mozilla Firefox 135.0.1
|
||||
- Geckodriver 0.35.0
|
||||
- Mozilla Firefox 136.0
|
||||
- Geckodriver 0.36.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -211,7 +216,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 18.20.7
|
||||
@@ -227,12 +232,12 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
- 3.13.2
|
||||
|
||||
#### PyPy
|
||||
- 2.7.18 [PyPy 7.3.18]
|
||||
- 2.7.18 [PyPy 7.3.19]
|
||||
- 3.6.12 [PyPy 7.3.3]
|
||||
- 3.7.13 [PyPy 7.3.9]
|
||||
- 3.8.16 [PyPy 7.3.11]
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.16 [PyPy 7.3.18]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
@@ -246,7 +251,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
#### PowerShell Modules
|
||||
- Az: 12.1.0
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.26.0
|
||||
- Microsoft.Graph: 2.26.1
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.23.0
|
||||
|
||||
@@ -288,14 +293,14 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| alpine:3.18 | sha256:de0eb0b3f2a47ba1eb89389859a9bd88b28e82f5826b6969ad604979713c2d4f | 2025-02-14 |
|
||||
| alpine:3.19 | sha256:e5d0aea7f7d2954678a9a6269ca2d06e06591881161961ea59e974dff3f12377 | 2025-02-14 |
|
||||
| debian:10 | sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225 | 2024-06-13 |
|
||||
| debian:11 | sha256:63904b1442dc0bb1e7a7a7065b3ba0d10d4e300f984115a40d371827fe4e3a85 | 2025-02-03 |
|
||||
| debian:11 | sha256:a6cec654bb08bdc6a563cd7507b62f57c916290e195142e79a0d41a70ebb26fa | 2025-02-24 |
|
||||
| debian:9 | sha256:c5c5200ff1e9c73ffbf188b4a67eb1c91531b644856b4aefe86a58d2f0cb05be | 2022-06-23 |
|
||||
| moby/buildkit:latest | sha256:2c59b0a95f5b2dc103814d69f695a61f131e75f3150ab58ea8afecd75e3d1f9a | 2025-02-19 |
|
||||
| node:18 | sha256:0629ee779413520498c69f2e6a6dce2be210879dc58789834c66eaf6d9ea9f1d | 2025-02-20 |
|
||||
| moby/buildkit:latest | sha256:c5137fdd77377ea102a2622714df55459fe42e5867ba180bda07291aa7952d9b | 2025-03-05 |
|
||||
| node:18 | sha256:ba756f198b4b1e0114b53b23121c8ae27f7ae4d5d95ca4a0554b0649cc9c7dcf | 2025-02-20 |
|
||||
| node:18-alpine | sha256:e0340f26173b41066d68e3fe9bfbdb6571ab3cad0a4272919a52e36f4ae56925 | 2025-02-20 |
|
||||
| node:20 | sha256:09b38290270d132b895814d9b54602635dbe146ed3ee65b04619922fe4ef6415 | 2025-02-10 |
|
||||
| node:20 | sha256:bcf90f85634194bc51e92f8add1221c7fdeeff94b7f1ff360aeaa7498086d641 | 2025-02-10 |
|
||||
| node:20-alpine | sha256:053c1d99e608fe9fa0db6821edd84276277c0a663cd181f4a3e59ee20f5f07ea | 2025-02-10 |
|
||||
| node:22 | sha256:cfef4432ab2901fd6ab2cb05b177d3c6f8a7f48cb22ad9d7ae28bb6aa5f8b471 | 2025-02-13 |
|
||||
| node:22 | sha256:f6b9c31ace05502dd98ef777aaa20464362435dcc5e312b0e213121dcf7d8b95 | 2025-02-13 |
|
||||
| node:22-alpine | sha256:9bef0ef1e268f60627da9ba7d7605e8831d5b56ad07487d24d1aa386336d1944 | 2025-02-13 |
|
||||
| ubuntu:20.04 | sha256:8e5c4f0285ecbb4ead070431d29b576a530d3166df73ec44affc1cd27555141b | 2024-10-11 |
|
||||
|
||||
@@ -306,7 +311,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| aria2 | 1.35.0-1build1 |
|
||||
| autoconf | 2.69-11.1 |
|
||||
| automake | 1:1.16.1-4ubuntu6 |
|
||||
| binutils | 2.34-6ubuntu1.9 |
|
||||
| binutils | 2.34-6ubuntu1.10 |
|
||||
| bison | 2:3.5.1+dfsg-1 |
|
||||
| brotli | 1.0.7-6ubuntu0.1 |
|
||||
| bzip2 | 1.0.8-2 |
|
||||
@@ -364,7 +369,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| patchelf | 0.10-2build1 |
|
||||
| pigz | 2.4-1 |
|
||||
| pkg-config | 0.29.1-0ubuntu4 |
|
||||
| pollinate | 4.33-3ubuntu1.20.04.1 |
|
||||
| pollinate | 4.33-3ubuntu1.20.04.2 |
|
||||
| python-is-python3 | 3.8.2-4 |
|
||||
| rpm | 4.14.2.1+dfsg1-1build2 |
|
||||
| rsync | 3.1.3-8ubuntu0.9 |
|
||||
@@ -387,7 +392,8 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| upx | 3.95-2build1 |
|
||||
| wget | 1.20.3-1ubuntu2.1 |
|
||||
| xorriso | 1.5.2-1 |
|
||||
| xvfb | 2:1.20.13-1ubuntu1\~20.04.18 |
|
||||
| xvfb | 2:1.20.13-1ubuntu1\~20.04.19 |
|
||||
| xz-utils | 5.2.4-1ubuntu1.1 |
|
||||
| zip | 3.0-11build1 |
|
||||
| zsync | 0.6.2-3ubuntu1 |
|
||||
|
||||
|
||||
@@ -1,7 +1,12 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Ubuntu] Breaking change : Docker Engine Version 26.* will be updated to Docker Engine Version 28* from 2025-05-09](https://github.com/actions/runner-images/issues/11766) |
|
||||
| [[Ubuntu] Breaking change : PostgreSQL version 14.* for Ubuntu 22.04, PostgreSQL version 16.* for Ubuntu 24.04 will be updated to version 17.* from 2025-05-09](https://github.com/actions/runner-images/issues/11723) |
|
||||
***
|
||||
# Ubuntu 22.04
|
||||
- OS Version: 22.04.5 LTS
|
||||
- Kernel Version: 6.8.0-1021-azure
|
||||
- Image Version: 20250223.1.0
|
||||
- Image Version: 20250309.1.0
|
||||
- Systemd version: 249.11-0ubuntu3.12
|
||||
|
||||
## Installed Software
|
||||
@@ -27,7 +32,7 @@
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.17.1
|
||||
- Homebrew 4.4.21
|
||||
- Homebrew 4.4.23
|
||||
- Miniconda 25.1.1
|
||||
- Npm 10.8.2
|
||||
- NuGet 6.6.1.2
|
||||
@@ -35,7 +40,7 @@
|
||||
- Pip3 22.0.2
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.3.5
|
||||
- Vcpkg (build from commit 5f8c424e26)
|
||||
- Vcpkg (build from commit 300239058e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -54,24 +59,24 @@ to accomplish this.
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.12
|
||||
- Gradle 8.12.1
|
||||
- Lerna 8.2.0
|
||||
- Gradle 8.13
|
||||
- Lerna 8.2.1
|
||||
- Maven 3.9.9
|
||||
- Sbt 1.10.7
|
||||
- Sbt 1.10.10
|
||||
|
||||
### Tools
|
||||
- Ansible 2.17.8
|
||||
- Ansible 2.17.9
|
||||
- apt-fast 1.10.0
|
||||
- AzCopy 10.28.0 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 8.1.0
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.33.93
|
||||
- Buildah 1.23.1
|
||||
- CMake 3.31.5
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker Amazon ECR Credential Helper 0.9.1
|
||||
- Docker Compose v2 2.27.1
|
||||
- Docker-Buildx 0.21.1
|
||||
- Docker-Buildx 0.21.2
|
||||
- Docker Client 26.1.3
|
||||
- Docker Server 26.1.3
|
||||
- Fastlane 2.226.0
|
||||
@@ -95,29 +100,30 @@ to accomplish this.
|
||||
- Packer 1.12.0
|
||||
- Parcel 2.13.3
|
||||
- Podman 3.4.4
|
||||
- Pulumi 3.150.0
|
||||
- R 4.4.2
|
||||
- Pulumi 3.154.0
|
||||
- R 4.4.3
|
||||
- Skopeo 1.4.1
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- SVN 1.14.1
|
||||
- Terraform 1.10.5
|
||||
- Terraform 1.11.1
|
||||
- yamllint 1.35.1
|
||||
- yq 4.45.1
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.12.1
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.254
|
||||
- AWS CLI 2.24.10
|
||||
- Alibaba Cloud CLI 3.0.256
|
||||
- AWS CLI 2.24.20
|
||||
- AWS CLI Session Manager Plugin 1.2.707.0
|
||||
- AWS SAM CLI 1.134.0
|
||||
- Azure CLI 2.69.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- GitHub CLI 2.67.0
|
||||
- Google Cloud CLI 511.0.0
|
||||
- Netlify CLI 18.1.0
|
||||
- OpenShift CLI 4.17.17
|
||||
- GitHub CLI 2.68.1
|
||||
- Google Cloud CLI 513.0.0
|
||||
- Netlify CLI 19.0.2
|
||||
- OpenShift CLI 4.18.3
|
||||
- ORAS CLI 1.2.2
|
||||
- Vercel CLI 41.2.0
|
||||
- Vercel CLI 41.3.2
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
@@ -129,7 +135,7 @@ to accomplish this.
|
||||
|
||||
### PHP Tools
|
||||
- PHP: 8.1.2
|
||||
- Composer 2.8.5
|
||||
- Composer 2.8.6
|
||||
- PHPUnit 8.5.41
|
||||
```
|
||||
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
@@ -145,25 +151,25 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.27.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Bindgen 0.71.1
|
||||
- Cargo audit 0.21.1
|
||||
- Cargo audit 0.21.2
|
||||
- Cargo clippy 0.1.85
|
||||
- Cargo outdated 0.16.0
|
||||
- Cbindgen 0.28.0
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 133.0.6943.126
|
||||
- ChromeDriver 133.0.6943.126
|
||||
- Chromium 133.0.6943.0
|
||||
- Microsoft Edge 133.0.3065.82
|
||||
- Microsoft Edge WebDriver 133.0.3065.82
|
||||
- Google Chrome 134.0.6998.35
|
||||
- ChromeDriver 134.0.6998.35
|
||||
- Chromium 134.0.6998.0
|
||||
- Microsoft Edge 134.0.3124.51
|
||||
- Microsoft Edge WebDriver 134.0.3124.51
|
||||
- Selenium server 4.29.0
|
||||
- Mozilla Firefox 135.0.1
|
||||
- Geckodriver 0.35.0
|
||||
- Mozilla Firefox 136.0
|
||||
- Geckodriver 0.36.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -206,7 +212,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 18.20.7
|
||||
@@ -225,7 +231,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
- 3.7.13 [PyPy 7.3.9]
|
||||
- 3.8.16 [PyPy 7.3.11]
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.16 [PyPy 7.3.18]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
|
||||
#### Ruby
|
||||
- 3.1.6
|
||||
@@ -238,7 +244,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
#### PowerShell Modules
|
||||
- Az: 12.1.0
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.26.0
|
||||
- Microsoft.Graph: 2.26.1
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.23.0
|
||||
|
||||
@@ -279,13 +285,13 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| alpine:3.18 | sha256:de0eb0b3f2a47ba1eb89389859a9bd88b28e82f5826b6969ad604979713c2d4f | 2025-02-14 |
|
||||
| alpine:3.19 | sha256:e5d0aea7f7d2954678a9a6269ca2d06e06591881161961ea59e974dff3f12377 | 2025-02-14 |
|
||||
| debian:10 | sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225 | 2024-06-13 |
|
||||
| debian:11 | sha256:63904b1442dc0bb1e7a7a7065b3ba0d10d4e300f984115a40d371827fe4e3a85 | 2025-02-03 |
|
||||
| moby/buildkit:latest | sha256:2c59b0a95f5b2dc103814d69f695a61f131e75f3150ab58ea8afecd75e3d1f9a | 2025-02-19 |
|
||||
| node:18 | sha256:0629ee779413520498c69f2e6a6dce2be210879dc58789834c66eaf6d9ea9f1d | 2025-02-20 |
|
||||
| debian:11 | sha256:a6cec654bb08bdc6a563cd7507b62f57c916290e195142e79a0d41a70ebb26fa | 2025-02-24 |
|
||||
| moby/buildkit:latest | sha256:c5137fdd77377ea102a2622714df55459fe42e5867ba180bda07291aa7952d9b | 2025-03-05 |
|
||||
| node:18 | sha256:ba756f198b4b1e0114b53b23121c8ae27f7ae4d5d95ca4a0554b0649cc9c7dcf | 2025-02-20 |
|
||||
| node:18-alpine | sha256:e0340f26173b41066d68e3fe9bfbdb6571ab3cad0a4272919a52e36f4ae56925 | 2025-02-20 |
|
||||
| node:20 | sha256:09b38290270d132b895814d9b54602635dbe146ed3ee65b04619922fe4ef6415 | 2025-02-10 |
|
||||
| node:20 | sha256:bcf90f85634194bc51e92f8add1221c7fdeeff94b7f1ff360aeaa7498086d641 | 2025-02-10 |
|
||||
| node:20-alpine | sha256:053c1d99e608fe9fa0db6821edd84276277c0a663cd181f4a3e59ee20f5f07ea | 2025-02-10 |
|
||||
| node:22 | sha256:cfef4432ab2901fd6ab2cb05b177d3c6f8a7f48cb22ad9d7ae28bb6aa5f8b471 | 2025-02-13 |
|
||||
| node:22 | sha256:f6b9c31ace05502dd98ef777aaa20464362435dcc5e312b0e213121dcf7d8b95 | 2025-02-13 |
|
||||
| node:22-alpine | sha256:9bef0ef1e268f60627da9ba7d7605e8831d5b56ad07487d24d1aa386336d1944 | 2025-02-13 |
|
||||
| ubuntu:20.04 | sha256:8e5c4f0285ecbb4ead070431d29b576a530d3166df73ec44affc1cd27555141b | 2024-10-11 |
|
||||
| ubuntu:22.04 | sha256:ed1544e454989078f5dec1bfdabd8c5cc9c48e0705d07b678ab6ae3fb61952d2 | 2025-01-26 |
|
||||
@@ -297,7 +303,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| aria2 | 1.36.0-1 |
|
||||
| autoconf | 2.71-2 |
|
||||
| automake | 1:1.16.5-1.3 |
|
||||
| binutils | 2.38-4ubuntu2.6 |
|
||||
| binutils | 2.38-4ubuntu2.7 |
|
||||
| bison | 2:3.8.2+dfsg-1build1 |
|
||||
| brotli | 1.0.9-2build6 |
|
||||
| bzip2 | 1.0.8-5build1 |
|
||||
@@ -311,7 +317,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| file | 1:5.41-3ubuntu0.1 |
|
||||
| findutils | 4.8.0-1ubuntu3 |
|
||||
| flex | 2.6.4-8build2 |
|
||||
| fonts-noto-color-emoji | 2.042-0ubuntu0.22.04.1 |
|
||||
| fonts-noto-color-emoji | 2.047-0ubuntu0.22.04.1 |
|
||||
| ftp | 20210827-4build1 |
|
||||
| g++ | 4:11.2.0-1ubuntu1 |
|
||||
| gcc | 4:11.2.0-1ubuntu1 |
|
||||
@@ -357,7 +363,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| patchelf | 0.14.3-1 |
|
||||
| pigz | 2.6-1 |
|
||||
| pkg-config | 0.29.2-1ubuntu3 |
|
||||
| pollinate | 4.33-3ubuntu2 |
|
||||
| pollinate | 4.33-3ubuntu2.1 |
|
||||
| python-is-python3 | 3.9.2-2 |
|
||||
| rpm | 4.17.0+dfsg1-4build1 |
|
||||
| rsync | 3.2.7-0ubuntu0.22.04.4 |
|
||||
@@ -380,7 +386,8 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| upx | 3.96-3 |
|
||||
| wget | 1.21.2-2ubuntu1.1 |
|
||||
| xorriso | 1.5.4-2 |
|
||||
| xvfb | 2:21.1.4-2ubuntu1.7\~22.04.12 |
|
||||
| xvfb | 2:21.1.4-2ubuntu1.7\~22.04.13 |
|
||||
| xz-utils | 5.2.5-2ubuntu1 |
|
||||
| zip | 3.0-12build2 |
|
||||
| zsync | 0.6.2-3ubuntu1 |
|
||||
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Ubuntu] Breaking change : PostgreSQL version 14.* for Ubuntu 22.04, PostgreSQL version 16.* for Ubuntu 24.04 will be updated to version 17.* from 2025-05-09](https://github.com/actions/runner-images/issues/11723) |
|
||||
***
|
||||
# Ubuntu 24.04
|
||||
- OS Version: 24.04.2 LTS
|
||||
- Kernel Version: 6.8.0-1021-azure
|
||||
- Image Version: 20250223.1.0
|
||||
- Image Version: 20250309.1.0
|
||||
- Systemd version: 255.4-1ubuntu8.5
|
||||
|
||||
## Installed Software
|
||||
@@ -25,14 +29,14 @@
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.17.1
|
||||
- Homebrew 4.4.21
|
||||
- Homebrew 4.4.23
|
||||
- Miniconda 25.1.1
|
||||
- Npm 10.8.2
|
||||
- Pip 24.0
|
||||
- Pip3 24.0
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.4.20
|
||||
- Vcpkg (build from commit 5f8c424e26)
|
||||
- Vcpkg (build from commit 300239058e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -51,22 +55,22 @@ to accomplish this.
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.14
|
||||
- Gradle 8.12.1
|
||||
- Lerna 8.2.0
|
||||
- Gradle 8.13
|
||||
- Lerna 8.2.1
|
||||
- Maven 3.9.9
|
||||
|
||||
### Tools
|
||||
- Ansible 2.18.2
|
||||
- Ansible 2.18.3
|
||||
- AzCopy 10.28.0 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 8.1.0
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.33.93
|
||||
- Buildah 1.33.7
|
||||
- CMake 3.31.5
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker Amazon ECR Credential Helper 0.9.1
|
||||
- Docker Compose v2 2.27.1
|
||||
- Docker-Buildx 0.21.1
|
||||
- Docker-Buildx 0.21.2
|
||||
- Docker Client 26.1.3
|
||||
- Docker Server 26.1.3
|
||||
- Fastlane 2.226.0
|
||||
@@ -88,21 +92,22 @@ to accomplish this.
|
||||
- Packer 1.12.0
|
||||
- Parcel 2.13.3
|
||||
- Podman 4.9.3
|
||||
- Pulumi 3.150.0
|
||||
- Pulumi 3.154.0
|
||||
- Skopeo 1.13.3
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- yamllint 1.35.1
|
||||
- yq 4.45.1
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.12.1
|
||||
|
||||
### CLI Tools
|
||||
- AWS CLI 2.24.10
|
||||
- AWS CLI 2.24.20
|
||||
- AWS CLI Session Manager Plugin 1.2.707.0
|
||||
- AWS SAM CLI 1.134.0
|
||||
- Azure CLI 2.69.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- GitHub CLI 2.67.0
|
||||
- Google Cloud CLI 511.0.0
|
||||
- GitHub CLI 2.68.1
|
||||
- Google Cloud CLI 513.0.0
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
@@ -114,7 +119,7 @@ to accomplish this.
|
||||
|
||||
### PHP Tools
|
||||
- PHP: 8.3.6
|
||||
- Composer 2.8.5
|
||||
- Composer 2.8.6
|
||||
- PHPUnit 8.5.41
|
||||
```
|
||||
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
@@ -130,20 +135,20 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.27.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 133.0.6943.126
|
||||
- ChromeDriver 133.0.6943.126
|
||||
- Chromium 133.0.6943.0
|
||||
- Microsoft Edge 133.0.3065.82
|
||||
- Microsoft Edge WebDriver 133.0.3065.82
|
||||
- Google Chrome 134.0.6998.35
|
||||
- ChromeDriver 134.0.6998.35
|
||||
- Chromium 134.0.6998.0
|
||||
- Microsoft Edge 134.0.3124.51
|
||||
- Microsoft Edge WebDriver 134.0.3124.51
|
||||
- Selenium server 4.29.0
|
||||
- Mozilla Firefox 135.0.1
|
||||
- Geckodriver 0.35.0
|
||||
- Mozilla Firefox 136.0
|
||||
- Geckodriver 0.36.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -182,7 +187,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 18.20.7
|
||||
@@ -198,7 +203,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
|
||||
#### PyPy
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.16 [PyPy 7.3.18]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
|
||||
#### Ruby
|
||||
- 3.2.7
|
||||
@@ -209,7 +214,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 12.1.0
|
||||
- Microsoft.Graph: 2.26.0
|
||||
- Microsoft.Graph: 2.26.1
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.23.0
|
||||
|
||||
@@ -249,7 +254,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| aria2 | 1.37.0+debian-1build3 |
|
||||
| autoconf | 2.71-3 |
|
||||
| automake | 1:1.16.5-1.3ubuntu1 |
|
||||
| binutils | 2.42-4ubuntu2.3 |
|
||||
| binutils | 2.42-4ubuntu2.4 |
|
||||
| bison | 2:3.8.2+dfsg-1build2 |
|
||||
| brotli | 1.1.0-2build2 |
|
||||
| bzip2 | 1.0.8-5.1build0.1 |
|
||||
@@ -263,7 +268,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| file | 1:5.45-3build1 |
|
||||
| findutils | 4.9.0-5build1 |
|
||||
| flex | 2.6.4-8.2build1 |
|
||||
| fonts-noto-color-emoji | 2.042-1 |
|
||||
| fonts-noto-color-emoji | 2.047-0ubuntu0.24.04.1 |
|
||||
| ftp | 20230507-2build3 |
|
||||
| g++ | 4:13.2.0-7ubuntu1 |
|
||||
| gcc | 4:13.2.0-7ubuntu1 |
|
||||
@@ -291,7 +296,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| patchelf | 0.18.0-1.1build1 |
|
||||
| pigz | 2.8-1 |
|
||||
| pkg-config | 1.8.1-2build1 |
|
||||
| pollinate | 4.33-3.1ubuntu1 |
|
||||
| pollinate | 4.33-3.1ubuntu1.1 |
|
||||
| python-is-python3 | 3.11.4-1 |
|
||||
| rpm | 4.18.2+dfsg-2.1build2 |
|
||||
| rsync | 3.2.7-1ubuntu1.2 |
|
||||
@@ -313,7 +318,8 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| unzip | 6.0-28ubuntu4.1 |
|
||||
| upx | 4.2.2-3 |
|
||||
| wget | 1.21.4-1ubuntu4.1 |
|
||||
| xvfb | 2:21.1.12-1ubuntu1.1 |
|
||||
| xvfb | 2:21.1.12-1ubuntu1.2 |
|
||||
| xz-utils | 5.6.1+really5.4.5-1build0.1 |
|
||||
| zip | 3.0-13ubuntu0.2 |
|
||||
| zsync | 0.6.2-5build1 |
|
||||
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash -e
|
||||
################################################################################
|
||||
## File: install-ninja.sh
|
||||
## Desc: Install ninja-build
|
||||
################################################################################
|
||||
|
||||
# Source the helpers for use with the script
|
||||
source $HELPER_SCRIPTS/install.sh
|
||||
|
||||
# Install ninja
|
||||
download_url=$(resolve_github_release_asset_url "ninja-build/ninja" "endswith(\"ninja-linux.zip\")" "latest")
|
||||
ninja_binary_path=$(download_with_retry "${download_url}")
|
||||
|
||||
# Unzip the ninja binary
|
||||
unzip -qq "$ninja_binary_path" -d /usr/local/bin
|
||||
|
||||
invoke_tests "Tools" "Ninja"
|
||||
@@ -13,6 +13,9 @@ apt-get install ruby-full
|
||||
# temporary fix for fastlane installation https://github.com/sporkmonger/addressable/issues/541
|
||||
if is_ubuntu20; then
|
||||
gem install public_suffix -v 5.1.1
|
||||
|
||||
# Install google-cloud-errors gem pinned to version 1.4.0
|
||||
gem install google-cloud-errors -v 1.4.0
|
||||
fi
|
||||
|
||||
# Install ruby gems from toolset
|
||||
|
||||
@@ -156,6 +156,7 @@ if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$tools.AddToolVersion("yamllint", $(Get-YamllintVersion))
|
||||
$tools.AddToolVersion("yq", $(Get-YqVersion))
|
||||
$tools.AddToolVersion("zstd", $(Get-ZstdVersion))
|
||||
$tools.AddToolVersion("Ninja", $(Get-NinjaVersion))
|
||||
|
||||
# CLI Tools
|
||||
$cliTools = $installedSoftware.AddHeader("CLI Tools")
|
||||
|
||||
@@ -275,6 +275,10 @@ function Get-ZstdVersion {
|
||||
return "$zstdVersion"
|
||||
}
|
||||
|
||||
function Get-NinjaVersion {
|
||||
return $(ninja --version)
|
||||
}
|
||||
|
||||
function Get-YqVersion {
|
||||
$yqVersion = $(yq -V) | Get-StringPart -Part 3
|
||||
return $yqVersion.TrimStart("v").Trim()
|
||||
|
||||
@@ -411,3 +411,25 @@ Describe "Kotlin" {
|
||||
"kotlinc-js -version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Ninja" {
|
||||
New-item -Path "/tmp/ninjaproject" -ItemType Directory -Force
|
||||
Set-Location '/tmp/ninjaproject'
|
||||
@'
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(NinjaTest NONE)
|
||||
'@ | Out-File -FilePath "./CMakeLists.txt"
|
||||
|
||||
It "Make a simple ninja project" {
|
||||
"cmake -GNinja /tmp/ninjaproject" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
It "build.ninja file should exist" {
|
||||
$buildFilePath = Join-Path "/tmp/ninjaproject" "build.ninja"
|
||||
$buildFilePath | Should -Exist
|
||||
}
|
||||
|
||||
It "Ninja" {
|
||||
"ninja --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
@@ -328,7 +328,8 @@ build {
|
||||
"${path.root}/../scripts/build/install-android-sdk.sh",
|
||||
"${path.root}/../scripts/build/install-pypy.sh",
|
||||
"${path.root}/../scripts/build/install-python.sh",
|
||||
"${path.root}/../scripts/build/install-zstd.sh"
|
||||
"${path.root}/../scripts/build/install-zstd.sh",
|
||||
"${path.root}/../scripts/build/install-ninja.sh"
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
@@ -324,7 +324,8 @@ build {
|
||||
"${path.root}/../scripts/build/install-android-sdk.sh",
|
||||
"${path.root}/../scripts/build/install-pypy.sh",
|
||||
"${path.root}/../scripts/build/install-python.sh",
|
||||
"${path.root}/../scripts/build/install-zstd.sh"
|
||||
"${path.root}/../scripts/build/install-zstd.sh",
|
||||
"${path.root}/../scripts/build/install-ninja.sh"
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
@@ -313,7 +313,8 @@ provisioner "shell" {
|
||||
"${path.root}/../scripts/build/install-android-sdk.sh",
|
||||
"${path.root}/../scripts/build/install-pypy.sh",
|
||||
"${path.root}/../scripts/build/install-python.sh",
|
||||
"${path.root}/../scripts/build/install-zstd.sh"
|
||||
"${path.root}/../scripts/build/install-zstd.sh",
|
||||
"${path.root}/../scripts/build/install-ninja.sh"
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Windows] Removal of Azure and Azure Powershell module from windows images from 2025-03-01](https://github.com/actions/runner-images/issues/11483) |
|
||||
| [Windows Server 2025 will be Generally Available in GitHub Actions and Azure DevOps from 2025-04-01](https://github.com/actions/runner-images/issues/11742) |
|
||||
| [[Windows] Go version 1.20 and 1.21 will be removed from the images on 2025-05-05 and 1.24 will be set as default.](https://github.com/actions/runner-images/issues/11711) |
|
||||
| [[Windows 19 and 22] Node.js version 16 will be removed from Windows images on 2025-05-05](https://github.com/actions/runner-images/issues/11710) |
|
||||
| [Windows Server 2025 is now available](https://github.com/actions/runner-images/issues/11228) |
|
||||
| [[Windows] Breaking change : Docker Engine Version 26.* will be updated to Docker Engine Version 27.* from 2025-03-07](https://github.com/actions/runner-images/issues/11104) |
|
||||
***
|
||||
# Windows Server 2019
|
||||
- OS Version: 10.0.17763 Build 6775
|
||||
- Image Version: 20250209.1.0
|
||||
- OS Version: 10.0.17763 Build 6893
|
||||
- Image Version: 20250309.1.0
|
||||
|
||||
## Windows features
|
||||
- Windows Subsystem for Linux (WSLv1): Enabled
|
||||
@@ -19,23 +20,23 @@
|
||||
- Julia 1.10.5
|
||||
- Kotlin 2.1.10
|
||||
- LLVM 18.1.8
|
||||
- Node 18.20.6
|
||||
- Node 18.20.7
|
||||
- Perl 5.32.1
|
||||
- PHP 8.4.3
|
||||
- PHP 8.4.4
|
||||
- Python 3.9.13
|
||||
- Ruby 3.0.7p220
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.4.2
|
||||
- Composer 2.8.5
|
||||
- Helm 3.16.4
|
||||
- Chocolatey 2.4.3
|
||||
- Composer 2.8.6
|
||||
- Helm 3.17.0
|
||||
- Miniconda 25.1.1 (pre-installed on the image but not added to PATH)
|
||||
- NPM 10.8.2
|
||||
- NuGet 6.12.2.1
|
||||
- NuGet 6.13.2.1
|
||||
- pip 25.0.1 (python 3.9)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.2.33
|
||||
- Vcpkg (build from commit 74ec888e38)
|
||||
- Vcpkg (build from commit 300239058e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -46,32 +47,32 @@
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.14
|
||||
- Gradle 8.12
|
||||
- Gradle 8.13
|
||||
- Maven 3.9.9
|
||||
- sbt 1.10.7
|
||||
- sbt 1.10.10
|
||||
|
||||
### Tools
|
||||
- 7zip 24.09
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.28.0
|
||||
- Bazel 8.0.1
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.33.13
|
||||
- Cabal 3.14.1.1
|
||||
- CMake 3.31.5
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker 26.1.3
|
||||
- Docker Compose v2 2.27.1
|
||||
- Docker-wincred 0.8.2
|
||||
- Docker 27.5.1
|
||||
- Docker Compose v2 2.32.2
|
||||
- Docker-wincred 0.9.2
|
||||
- ghc 9.12.1
|
||||
- Git 2.47.1.windows.2
|
||||
- Git 2.48.1.windows.1
|
||||
- Git LFS 3.6.1
|
||||
- Google Cloud CLI 509.0.0
|
||||
- ImageMagick 7.1.1-43
|
||||
- Google Cloud CLI 513.0.0
|
||||
- ImageMagick 7.1.1-44
|
||||
- InnoSetup 6.4.0
|
||||
- jq 1.7.1
|
||||
- Kind 0.26.0
|
||||
- Kubectl 1.32.1
|
||||
- Kind 0.27.0
|
||||
- Kubectl 1.32.2
|
||||
- Mercurial 5.0
|
||||
- gcc 8.1.0
|
||||
- gdb 8.1
|
||||
@@ -81,7 +82,7 @@
|
||||
- OpenSSL 1.1.1w
|
||||
- Packer 1.12.0
|
||||
- Parcel 2.13.3
|
||||
- Pulumi 3.149.0
|
||||
- Pulumi 3.154.0
|
||||
- R 4.4.2
|
||||
- Service Fabric SDK 9.1.1436.9590
|
||||
- Stack 3.3.1
|
||||
@@ -91,41 +92,41 @@
|
||||
- WinAppDriver 1.2.2009.02003
|
||||
- WiX Toolset 3.14.1.8722
|
||||
- yamllint 1.35.1
|
||||
- zstd 1.5.6
|
||||
- zstd 1.5.7
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.251
|
||||
- AWS CLI 2.24.0
|
||||
- AWS SAM CLI 1.133.0
|
||||
- Alibaba Cloud CLI 3.0.256
|
||||
- AWS CLI 2.24.20
|
||||
- AWS SAM CLI 1.134.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.68.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure DevOps CLI extension 1.0.1
|
||||
- Cloud Foundry CLI 8.9.0
|
||||
- GitHub CLI 2.66.1
|
||||
- Cloud Foundry CLI 8.10.0
|
||||
- GitHub CLI 2.68.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.84.1
|
||||
- Rust 1.84.1
|
||||
- Rustdoc 1.84.1
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- bindgen 0.71.1
|
||||
- cargo-audit 0.21.1
|
||||
- cargo-audit 0.21.2
|
||||
- cargo-outdated 0.16.0
|
||||
- cbindgen 0.28.0
|
||||
- Clippy 0.1.84
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 133.0.6943.60
|
||||
- Chrome Driver 133.0.6943.53
|
||||
- Microsoft Edge 132.0.2957.140
|
||||
- Microsoft Edge Driver 132.0.2957.140
|
||||
- Mozilla Firefox 135.0
|
||||
- Gecko Driver 0.35.0
|
||||
- Google Chrome 134.0.6998.36
|
||||
- Chrome Driver 134.0.6998.35
|
||||
- Microsoft Edge 134.0.3124.51
|
||||
- Microsoft Edge Driver 134.0.3124.51
|
||||
- Mozilla Firefox 136.0
|
||||
- Gecko Driver 0.36.0
|
||||
- IE Driver 4.14.0.0
|
||||
- Selenium server 4.28.0
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -169,13 +170,13 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 1.20.14
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
- 18.20.6
|
||||
- 20.18.2
|
||||
- 22.13.1
|
||||
- 18.20.7
|
||||
- 20.18.3
|
||||
- 22.14.0
|
||||
|
||||
#### Python
|
||||
- 3.8.10
|
||||
@@ -186,12 +187,12 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 3.13.2
|
||||
|
||||
#### PyPy
|
||||
- 2.7.18 [PyPy 7.3.18]
|
||||
- 2.7.18 [PyPy 7.3.19]
|
||||
- 3.6.12 [PyPy 7.3.3]
|
||||
- 3.7.13 [PyPy 7.3.9]
|
||||
- 3.8.16 [PyPy 7.3.11]
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.16 [PyPy 7.3.18]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
@@ -205,7 +206,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Property | Value |
|
||||
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| ServiceName | postgresql-x64-14 |
|
||||
| Version | 14.15 |
|
||||
| Version | 14.17 |
|
||||
| ServiceStatus | Stopped |
|
||||
| ServiceStartType | Disabled |
|
||||
| EnvironmentVariables | PGBIN=C:\Program Files\PostgreSQL\14\bin <br> PGDATA=C:\Program Files\PostgreSQL\14\data <br> PGROOT=C:\Program Files\PostgreSQL\14 |
|
||||
@@ -232,14 +233,14 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Nginx | 1.27.4 | C:\tools\nginx-1.27.4\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
|
||||
### Visual Studio Enterprise 2019
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | --------------- | -------------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2019 | 16.11.35706.149 | C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise |
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | -------------- | -------------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2019 | 16.11.35731.53 | C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise |
|
||||
|
||||
#### Workloads, components and extensions
|
||||
| Package | Version |
|
||||
| ------------------------------------------------------------------------- | --------------- |
|
||||
| Component.Android.NDK.R16B | 16.11.35704.18 |
|
||||
| Component.Android.NDK.R16B | 16.11.35731.53 |
|
||||
| Component.Android.SDK25.Private | 16.0.28625.61 |
|
||||
| Component.Android.SDK30 | 16.10.31205.252 |
|
||||
| Component.Ant | 1.9.3.8 |
|
||||
@@ -479,10 +480,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft Visual C++ 2013 Minimum Runtime | x86 | 12.0.21005 |
|
||||
| Microsoft Visual C++ 2019 Debug Runtime | x64 | 14.29.30157 |
|
||||
| Microsoft Visual C++ 2019 Debug Runtime | x86 | 14.29.30157 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x64 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x64 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x86 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x86 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x64 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x64 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x86 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x86 | 14.42.34438 |
|
||||
|
||||
#### Installed Windows SDKs
|
||||
- 10.0.14393.0
|
||||
@@ -496,11 +497,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 10.0.22621.0
|
||||
|
||||
### .NET Core Tools
|
||||
- .NET Core SDK: 6.0.136, 6.0.203, 6.0.321, 6.0.428, 8.0.112, 8.0.206, 8.0.308, 8.0.405, 9.0.102
|
||||
- .NET Core SDK: 6.0.136, 6.0.203, 6.0.321, 6.0.428, 8.0.113, 8.0.206, 8.0.309, 8.0.406, 9.0.103, 9.0.200
|
||||
- .NET Framework: 4.7.2, 4.8
|
||||
- Microsoft.AspNetCore.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.12, 9.0.1
|
||||
- Microsoft.NETCore.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.12, 9.0.1
|
||||
- Microsoft.WindowsDesktop.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.12, 9.0.1
|
||||
- Microsoft.AspNetCore.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.13, 9.0.2
|
||||
- Microsoft.NETCore.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.13, 9.0.2
|
||||
- Microsoft.WindowsDesktop.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.13, 9.0.2
|
||||
- nbgv 3.7.115+d31f50f4d1
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -508,40 +509,31 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 12.1.0
|
||||
- Azure: 5.3.0
|
||||
- AzureRM: 6.13.1
|
||||
- Azure (Cached): 5.1.1.zip
|
||||
- AzureRM (Cached): 6.7.0.zip
|
||||
- AWSPowershell: 4.1.753
|
||||
- AWSPowershell: 4.1.773
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.25.0
|
||||
- Microsoft.Graph: 2.26.1
|
||||
- Pester: 3.4.0, 5.7.1
|
||||
- PowerShellGet: 1.0.0.1, 2.2.5
|
||||
- PSScriptAnalyzer: 1.23.0
|
||||
- PSWindowsUpdate: 2.2.1.5
|
||||
- SqlServer: 22.2.0
|
||||
- VSSetup: 2.2.16
|
||||
```
|
||||
Azure PowerShell module 2.1.0 and AzureRM PowerShell module 2.1.0 are installed
|
||||
and are available via 'Get-Module -ListAvailable'.
|
||||
All other versions are saved but not installed.
|
||||
```
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 8.0 |
|
||||
| Android Emulator | 35.3.11 |
|
||||
| Android Emulator | 35.4.9 |
|
||||
| Android SDK Build-tools | 35.0.0 35.0.1<br>34.0.0<br>33.0.0 33.0.1 33.0.2 33.0.3<br>32.0.0<br>31.0.0<br>30.0.2 |
|
||||
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3)<br>android-32 (rev 1)<br>android-31 (rev 1)<br>android-30 (rev 3) |
|
||||
| Android SDK Platform-Tools | 35.0.2 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.10.2<br>3.18.1<br>3.22.1 |
|
||||
| CMake | 3.18.1<br>3.22.1<br>3.31.5 |
|
||||
| Google APIs | addon-google_apis-google-21<br>addon-google_apis-google-22<br>addon-google_apis-google-23<br>addon-google_apis-google-24 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 26.3.11579264<br>27.2.12479018 |
|
||||
| NDK | 26.3.11579264<br>27.2.12479018<br>28.0.13004108 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -549,16 +541,16 @@ All other versions are saved but not installed.
|
||||
| ANDROID_HOME | C:\Android\android-sdk |
|
||||
| ANDROID_NDK | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_NDK_HOME | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\28.0.13004108 |
|
||||
| ANDROID_NDK_ROOT | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_SDK_ROOT | C:\Android\android-sdk |
|
||||
|
||||
### Cached Docker images
|
||||
| Repository:Tag | Digest | Created |
|
||||
| ------------------------------------------------------------------------- | ------------------------------------------------------------------------ | ---------- |
|
||||
| mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019 | sha256:a2d8245de6d6992c05b615df01bfdf903ff6f9799ee797076ae3113a907350af | 2025-01-14 |
|
||||
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2019 | sha256:afbf97e3682b2e0460152a5e57502373acf2f2264bc80bba7c4959a72c25fd36 | 2025-01-14 |
|
||||
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019 | sha256:ee59ff9393e277bc86a68cd47df9f81a6519c1c7c6afa025a18e2082a68ceccb | 2025-01-14 |
|
||||
| mcr.microsoft.com/windows/nanoserver:1809 | sha256:d96a6c2108e1449c872cc2b224a9b3444fa1415b4d6947280aba2d2bb3bd0025 | 2025-01-09 |
|
||||
| mcr.microsoft.com/windows/servercore:ltsc2019 | sha256:fb07dd14e84db4b84909be0a989597c31e28e199e7f47964fce763623d68e5d9 | 2025-01-09 |
|
||||
| mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019 | sha256:7cfa1d78892b08b474fe66a343b55f02d1c7038c28fe980806a335a1dbb6ed95 | 2025-02-12 |
|
||||
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2019 | sha256:c76a8bb8c70f3601dd97e1f5a60995cb6c651def8e0f35d5092b819e491602ee | 2025-02-11 |
|
||||
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019 | sha256:65f8f451dc4b8f521ed51d108dfec4da61385d341b321ce86050edbec570b02e | 2025-02-12 |
|
||||
| mcr.microsoft.com/windows/nanoserver:1809 | sha256:9f93d7a7eacdf9a6f7355a8bc3c0b3d46303ab13a519899d2927b1369e230b1f | 2025-02-07 |
|
||||
| mcr.microsoft.com/windows/servercore:ltsc2019 | sha256:2bacc4bdc5d1bd805587cb90a2fb2d58d1c775b02df1a19fd221cbfc639ff587 | 2025-02-07 |
|
||||
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Windows] Removal of Azure and Azure Powershell module from windows images from 2025-03-01](https://github.com/actions/runner-images/issues/11483) |
|
||||
| [Windows Server 2025 will be Generally Available in GitHub Actions and Azure DevOps from 2025-04-01](https://github.com/actions/runner-images/issues/11742) |
|
||||
| [[Windows] Go version 1.20 and 1.21 will be removed from the images on 2025-05-05 and 1.24 will be set as default.](https://github.com/actions/runner-images/issues/11711) |
|
||||
| [[Windows 19 and 22] Node.js version 16 will be removed from Windows images on 2025-05-05](https://github.com/actions/runner-images/issues/11710) |
|
||||
| [Windows Server 2025 is now available](https://github.com/actions/runner-images/issues/11228) |
|
||||
| [[Windows] Breaking change : Docker Engine Version 26.* will be updated to Docker Engine Version 27.* from 2025-03-07](https://github.com/actions/runner-images/issues/11104) |
|
||||
***
|
||||
# Windows Server 2022
|
||||
- OS Version: 10.0.20348 Build 3091
|
||||
- Image Version: 20250209.1.0
|
||||
- OS Version: 10.0.20348 Build 3207
|
||||
- Image Version: 20250309.1.0
|
||||
|
||||
## Windows features
|
||||
- Windows Subsystem for Linux (WSLv1): Enabled
|
||||
@@ -19,23 +20,23 @@
|
||||
- Julia 1.10.5
|
||||
- Kotlin 2.1.10
|
||||
- LLVM 18.1.8
|
||||
- Node 18.20.6
|
||||
- Node 18.20.7
|
||||
- Perl 5.32.1
|
||||
- PHP 8.4.3
|
||||
- PHP 8.4.4
|
||||
- Python 3.9.13
|
||||
- Ruby 3.0.7p220
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.4.2
|
||||
- Composer 2.8.5
|
||||
- Helm 3.16.4
|
||||
- Chocolatey 2.4.3
|
||||
- Composer 2.8.6
|
||||
- Helm 3.17.0
|
||||
- Miniconda 25.1.1 (pre-installed on the image but not added to PATH)
|
||||
- NPM 10.8.2
|
||||
- NuGet 6.12.2.1
|
||||
- NuGet 6.13.2.1
|
||||
- pip 25.0.1 (python 3.9)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.2.33
|
||||
- Vcpkg (build from commit 74ec888e38)
|
||||
- Vcpkg (build from commit 300239058e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -46,31 +47,31 @@
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.14
|
||||
- Gradle 8.12
|
||||
- Gradle 8.13
|
||||
- Maven 3.9.9
|
||||
- sbt 1.10.7
|
||||
- sbt 1.10.10
|
||||
|
||||
### Tools
|
||||
- 7zip 24.09
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.28.0
|
||||
- Bazel 8.0.1
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.33.13
|
||||
- Cabal 3.14.1.1
|
||||
- CMake 3.31.5
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker 26.1.3
|
||||
- Docker Compose v2 2.27.1
|
||||
- Docker-wincred 0.8.2
|
||||
- Docker 27.5.1
|
||||
- Docker Compose v2 2.32.2
|
||||
- Docker-wincred 0.9.2
|
||||
- ghc 9.12.1
|
||||
- Git 2.47.1.windows.2
|
||||
- Git 2.48.1.windows.1
|
||||
- Git LFS 3.6.1
|
||||
- ImageMagick 7.1.1-43
|
||||
- ImageMagick 7.1.1-44
|
||||
- InnoSetup 6.4.0
|
||||
- jq 1.7.1
|
||||
- Kind 0.26.0
|
||||
- Kubectl 1.32.1
|
||||
- Kind 0.27.0
|
||||
- Kubectl 1.32.2
|
||||
- Mercurial 5.0
|
||||
- gcc 12.2.0
|
||||
- gdb 11.2
|
||||
@@ -79,7 +80,7 @@
|
||||
- NSIS 3.10
|
||||
- OpenSSL 1.1.1w
|
||||
- Packer 1.12.0
|
||||
- Pulumi 3.149.0
|
||||
- Pulumi 3.154.0
|
||||
- R 4.4.2
|
||||
- Service Fabric SDK 9.1.1436.9590
|
||||
- Stack 3.3.1
|
||||
@@ -89,40 +90,40 @@
|
||||
- WinAppDriver 1.2.2009.02003
|
||||
- WiX Toolset 3.14.1.8722
|
||||
- yamllint 1.35.1
|
||||
- zstd 1.5.6
|
||||
- zstd 1.5.7
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.251
|
||||
- AWS CLI 2.24.0
|
||||
- AWS SAM CLI 1.133.0
|
||||
- Alibaba Cloud CLI 3.0.256
|
||||
- AWS CLI 2.24.20
|
||||
- AWS SAM CLI 1.134.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.68.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure DevOps CLI extension 1.0.1
|
||||
- GitHub CLI 2.66.1
|
||||
- GitHub CLI 2.68.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.84.1
|
||||
- Rust 1.84.1
|
||||
- Rustdoc 1.84.1
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- bindgen 0.71.1
|
||||
- cargo-audit 0.21.1
|
||||
- cargo-audit 0.21.2
|
||||
- cargo-outdated 0.16.0
|
||||
- cbindgen 0.28.0
|
||||
- Clippy 0.1.84
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 133.0.6943.60
|
||||
- Chrome Driver 133.0.6943.53
|
||||
- Microsoft Edge 132.0.2957.140
|
||||
- Microsoft Edge Driver 132.0.2957.140
|
||||
- Mozilla Firefox 135.0
|
||||
- Gecko Driver 0.35.0
|
||||
- Google Chrome 134.0.6998.36
|
||||
- Chrome Driver 134.0.6998.35
|
||||
- Microsoft Edge 134.0.3124.51
|
||||
- Microsoft Edge Driver 134.0.3124.51
|
||||
- Mozilla Firefox 136.0
|
||||
- Gecko Driver 0.36.0
|
||||
- IE Driver 4.14.0.0
|
||||
- Selenium server 4.28.0
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -163,13 +164,13 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 1.20.14
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
- 18.20.6
|
||||
- 20.18.2
|
||||
- 22.13.1
|
||||
- 18.20.7
|
||||
- 20.18.3
|
||||
- 22.14.0
|
||||
|
||||
#### Python
|
||||
- 3.8.10
|
||||
@@ -180,11 +181,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 3.13.2
|
||||
|
||||
#### PyPy
|
||||
- 2.7.18 [PyPy 7.3.18]
|
||||
- 2.7.18 [PyPy 7.3.19]
|
||||
- 3.7.13 [PyPy 7.3.9]
|
||||
- 3.8.16 [PyPy 7.3.11]
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.16 [PyPy 7.3.18]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
@@ -198,7 +199,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Property | Value |
|
||||
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| ServiceName | postgresql-x64-14 |
|
||||
| Version | 14.15 |
|
||||
| Version | 14.17 |
|
||||
| ServiceStatus | Stopped |
|
||||
| ServiceStartType | Disabled |
|
||||
| EnvironmentVariables | PGBIN=C:\Program Files\PostgreSQL\14\bin <br> PGDATA=C:\Program Files\PostgreSQL\14\data <br> PGROOT=C:\Program Files\PostgreSQL\14 |
|
||||
@@ -227,250 +228,248 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
### Visual Studio Enterprise 2022
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | --------------- | -------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2022 | 17.12.35707.178 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
|
||||
| Visual Studio Enterprise 2022 | 17.13.35825.156 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
|
||||
|
||||
#### Workloads, components and extensions
|
||||
| Package | Version |
|
||||
| ------------------------------------------------------------------------- | --------------- |
|
||||
| android | 35.0.7.0 |
|
||||
| Component.Android.NDK.R23C | 17.12.35410.122 |
|
||||
| Component.Android.SDK.MAUI | 17.12.35410.122 |
|
||||
| Component.Dotfuscator | 17.12.35410.122 |
|
||||
| Component.Linux.CMake | 17.12.35410.122 |
|
||||
| Component.Linux.RemoteFileExplorer | 17.12.35410.122 |
|
||||
| Component.MDD.Android | 17.12.35410.122 |
|
||||
| Component.MDD.Linux | 17.12.35410.122 |
|
||||
| Component.MDD.Linux.GCC.arm | 17.12.35410.122 |
|
||||
| Component.Microsoft.VisualStudio.LiveShare.2022 | 1.0.5940 |
|
||||
| Component.Microsoft.VisualStudio.RazorExtension | 17.12.35410.122 |
|
||||
| android | 35.0.39.0 |
|
||||
| Component.Android.NDK.R23C | 17.13.35710.127 |
|
||||
| Component.Android.SDK.MAUI | 17.13.35710.127 |
|
||||
| Component.Dotfuscator | 17.13.35710.127 |
|
||||
| Component.Linux.CMake | 17.13.35710.127 |
|
||||
| Component.Linux.RemoteFileExplorer | 17.13.35710.127 |
|
||||
| Component.MDD.Android | 17.13.35710.127 |
|
||||
| Component.MDD.Linux | 17.13.35710.127 |
|
||||
| Component.MDD.Linux.GCC.arm | 17.13.35710.127 |
|
||||
| Component.Microsoft.VisualStudio.LiveShare.2022 | 1.0.5949 |
|
||||
| Component.Microsoft.VisualStudio.RazorExtension | 17.13.35710.127 |
|
||||
| Component.Microsoft.VisualStudio.Tools.Applications.amd64 | 17.0.33617.0 |
|
||||
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 17.12.35410.122 |
|
||||
| Component.Microsoft.Web.LibraryManager | 17.12.35410.122 |
|
||||
| Component.Microsoft.WebTools.BrowserLink.WebLivePreview | 17.12.8.55161 |
|
||||
| Component.Microsoft.Windows.DriverKit | 10.0.26100.10 |
|
||||
| Component.OpenJDK | 17.12.35410.122 |
|
||||
| Component.UnityEngine.x64 | 17.12.35410.122 |
|
||||
| Component.Unreal | 17.12.35410.122 |
|
||||
| Component.Unreal.Android | 17.12.35410.122 |
|
||||
| Component.Unreal.Ide | 17.12.35410.122 |
|
||||
| Component.VisualStudio.GitHub.Copilot | 17.12.35707.178 |
|
||||
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 17.13.35710.127 |
|
||||
| Component.Microsoft.Web.LibraryManager | 17.13.35710.127 |
|
||||
| Component.Microsoft.WebTools.BrowserLink.WebLivePreview | 17.13.10.44860 |
|
||||
| Component.Microsoft.Windows.DriverKit | 10.0.26100.12 |
|
||||
| Component.OpenJDK | 17.13.35710.127 |
|
||||
| Component.UnityEngine.x64 | 17.13.35710.127 |
|
||||
| Component.Unreal | 17.13.35710.127 |
|
||||
| Component.Unreal.Android | 17.13.35710.127 |
|
||||
| Component.Unreal.Ide | 17.13.35710.127 |
|
||||
| Component.VisualStudio.GitHub.Copilot | 17.13.35820.181 |
|
||||
| Component.VSInstallerProjects2022 | 2.0.1 |
|
||||
| Component.WixToolset.VisualStudioExtension.Dev17 | 1.0.0.22 |
|
||||
| Component.WixToolset.VisualStudioExtension.Schemas3 | 1.0.0.22 |
|
||||
| Component.Xamarin | 17.12.35410.122 |
|
||||
| Component.Xamarin.RemotedSimulator | 17.12.35410.122 |
|
||||
| ios | 18.1.9163.0 |
|
||||
| maccatalyst | 18.1.9163.0 |
|
||||
| Component.Xamarin | 17.13.35710.127 |
|
||||
| Component.Xamarin.RemotedSimulator | 17.13.35710.127 |
|
||||
| ios | 18.2.9180.0 |
|
||||
| maccatalyst | 18.2.9180.0 |
|
||||
| maui.blazor | 9.0.14.12048 |
|
||||
| maui.core | 9.0.14.12048 |
|
||||
| maui.windows | 9.0.14.12048 |
|
||||
| Microsoft.Component.Azure.DataLake.Tools | 17.12.35410.122 |
|
||||
| Microsoft.Component.ClickOnce | 17.12.35410.122 |
|
||||
| Microsoft.Component.CodeAnalysis.SDK | 17.12.35410.122 |
|
||||
| Microsoft.Component.MSBuild | 17.12.35410.122 |
|
||||
| Microsoft.Component.NetFX.Native | 17.12.35410.122 |
|
||||
| Microsoft.Component.PythonTools | 17.12.35410.122 |
|
||||
| Microsoft.Component.PythonTools.Web | 17.12.35410.122 |
|
||||
| Microsoft.Component.VC.Runtime.UCRTSDK | 17.12.35410.122 |
|
||||
| Microsoft.ComponentGroup.Blend | 17.12.35410.122 |
|
||||
| Microsoft.ComponentGroup.ClickOnce.Publish | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.5.2.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.6.2.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.6.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.7.1.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.7.2.SDK | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.7.2.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.7.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.8.1.SDK | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.8.1.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.8.SDK | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.8.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.12.35410.122 |
|
||||
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.12.35410.122 |
|
||||
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.12.35410.122 |
|
||||
| microsoft.net.runtime.android | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.android.aot | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.android.aot.net8 | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.android.net8 | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.ios | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.ios.net8 | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.maccatalyst | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.maccatalyst.net8 | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.mono.tooling | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.mono.tooling.net8 | 9.0.124.61010 |
|
||||
| microsoft.net.sdk.emscripten | 9.0.11.10403 |
|
||||
| Microsoft.NetCore.Component.DevelopmentTools | 17.12.35410.122 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 17.12.35707.178 |
|
||||
| Microsoft.NetCore.Component.Runtime.9.0 | 17.12.35707.178 |
|
||||
| Microsoft.NetCore.Component.SDK | 17.12.35707.178 |
|
||||
| Microsoft.NetCore.Component.Web | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.AspNet | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.AspNet45 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.AuthoringTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ClientLibs | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Powershell | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ResourceManager.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ServiceFabric.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Waverton | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Waverton.BuildTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.ClassDesigner | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.CodeMap | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Common.Azure.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.CoreEditor | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.CppBuildInsights | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Debugger.JustInTime | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Debugger.Snapshot | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.DiagnosticTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.DockerTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.DslTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Embedded | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.EntityFramework | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.FSharp | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.Desktop | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.WebTemplates | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.GraphDocument | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Graphics | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Graphics.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.HLSL | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.IISExpress | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.IntelliCode | 17.12.35527.102 |
|
||||
| Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.TypeScript | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.LinqToSql | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.LiveUnitTesting | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Core | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Merq | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.MonoDebugger | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.MSODBC.SQL | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Node.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.NuGet | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.NuGet.BuildTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.PortableLibrary | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.Compiler | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Sharepoint.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.SQL.CLR | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.SQL.DataSources | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.SQL.SSDT | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.TeamOffice | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.TestTools.CodedUITest | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.TestTools.WebLoadTest | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.TextTemplating | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.TypeScript.TSServer | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Unity | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ASAN | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.CLI.Support | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.CMake.Project | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.CoreIde | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.DiagnosticTools | 17.12.35527.67 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.Clang | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Modules.x86.x64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.MSM | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Vcpkg | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VSSDK | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Wcf.Tooling | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Web | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.WebDeploy | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows10SDK | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows10SDK.19041 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows10SDK.20348 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.22000 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.22621 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.26100 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.WindowsAppSdkSupport.CSharp | 17.12.35707.178 |
|
||||
| Microsoft.VisualStudio.Component.Workflow | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.WslDebugging | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.All | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Android | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Blazor | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.iOS | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.MacCatalyst | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Shared | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Windows | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.VC.v142 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WindowsAppDevelopment.Prerequisites | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.Azure | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.CoreEditor | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.Data | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.DataScience | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedDesktop | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedGame | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NativeDesktop | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NativeGame | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NativeMobile | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NetCrossPlat | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NetWeb | 17.12.35504.99 |
|
||||
| Microsoft.VisualStudio.Workload.Node | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.Office | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.Python | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.Universal | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 17.12.35410.122 |
|
||||
| runtimes.ios | 9.0.124.61010 |
|
||||
| runtimes.ios.net8 | 9.0.124.61010 |
|
||||
| runtimes.maccatalyst | 9.0.124.61010 |
|
||||
| runtimes.maccatalyst.net8 | 9.0.124.61010 |
|
||||
| wasm.tools | 9.0.124.61010 |
|
||||
| Microsoft.Component.Azure.DataLake.Tools | 17.13.35710.127 |
|
||||
| Microsoft.Component.ClickOnce | 17.13.35710.127 |
|
||||
| Microsoft.Component.CodeAnalysis.SDK | 17.13.35710.127 |
|
||||
| Microsoft.Component.MSBuild | 17.13.35710.127 |
|
||||
| Microsoft.Component.NetFX.Native | 17.13.35710.127 |
|
||||
| Microsoft.Component.PythonTools | 17.13.35710.127 |
|
||||
| Microsoft.Component.PythonTools.Web | 17.13.35710.127 |
|
||||
| Microsoft.Component.VC.Runtime.UCRTSDK | 17.13.35710.127 |
|
||||
| Microsoft.ComponentGroup.Blend | 17.13.35710.127 |
|
||||
| Microsoft.ComponentGroup.ClickOnce.Publish | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.5.2.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.6.2.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.6.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.7.1.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.7.2.SDK | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.7.2.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.7.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.8.1.SDK | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.8.1.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.8.SDK | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.8.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.13.35710.127 |
|
||||
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.13.35710.127 |
|
||||
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.13.35710.127 |
|
||||
| microsoft.net.runtime.android | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.android.aot | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.android.aot.net8 | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.android.net8 | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.ios | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.ios.net8 | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.maccatalyst | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.maccatalyst.net8 | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.mono.tooling | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.mono.tooling.net8 | 9.0.225.6610 |
|
||||
| microsoft.net.sdk.emscripten | 9.0.12.6102 |
|
||||
| Microsoft.NetCore.Component.DevelopmentTools | 17.13.35710.127 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 17.13.35806.99 |
|
||||
| Microsoft.NetCore.Component.Runtime.9.0 | 17.13.35806.99 |
|
||||
| Microsoft.NetCore.Component.SDK | 17.13.35806.99 |
|
||||
| Microsoft.NetCore.Component.Web | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.AspNet | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.AspNet45 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.AuthoringTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ClientLibs | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ResourceManager.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ServiceFabric.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Waverton | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Waverton.BuildTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.ClassDesigner | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.CodeMap | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Common.Azure.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.CoreEditor | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.CppBuildInsights | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Debugger.JustInTime | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Debugger.Snapshot | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.DiagnosticTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.DockerTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.DslTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Embedded | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.EntityFramework | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.FSharp | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.Desktop | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.WebTemplates | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.GraphDocument | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Graphics | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Graphics.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.HLSL | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.IISExpress | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.IntelliCode | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.TypeScript | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.LinqToSql | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.LiveUnitTesting | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Core | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.MonoDebugger | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.MSODBC.SQL | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Node.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.NuGet | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.NuGet.BuildTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.PortableLibrary | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.Compiler | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Sharepoint.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.SQL.CLR | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.SQL.DataSources | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.SQL.SSDT | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.TeamOffice | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.TestTools.CodedUITest | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.TestTools.WebLoadTest | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.TextTemplating | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.TypeScript.TSServer | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Unity | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ASAN | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.CLI.Support | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.CMake.Project | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.CoreIde | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.DiagnosticTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.Clang | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Modules.x86.x64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.MSM | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Vcpkg | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VSSDK | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Wcf.Tooling | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Web | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.WebDeploy | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows10SDK | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows10SDK.19041 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows10SDK.20348 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.22000 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.22621 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.26100 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.WindowsAppSdkSupport.CSharp | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Workflow | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.WslDebugging | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.All | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Android | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Blazor | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.iOS | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.MacCatalyst | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Shared | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Windows | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.VC.v142 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WindowsAppDevelopment.Prerequisites | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.Azure | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.CoreEditor | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.Data | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.DataScience | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedDesktop | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedGame | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.NativeDesktop | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.NativeGame | 17.13.35818.55 |
|
||||
| Microsoft.VisualStudio.Workload.NativeMobile | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.NetCrossPlat | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.NetWeb | 17.13.35730.67 |
|
||||
| Microsoft.VisualStudio.Workload.Node | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.Office | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.Python | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.Universal | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 17.13.35710.127 |
|
||||
| runtimes.ios | 9.0.225.6610 |
|
||||
| runtimes.ios.net8 | 9.0.225.6610 |
|
||||
| runtimes.maccatalyst | 9.0.225.6610 |
|
||||
| runtimes.maccatalyst.net8 | 9.0.225.6610 |
|
||||
| wasm.tools | 9.0.225.6610 |
|
||||
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 3.0.4 |
|
||||
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 3.0.1 |
|
||||
| SSIS.MicrosoftDataToolsIntegrationServices | 1.5 |
|
||||
| VisualStudioClient.MicrosoftVisualStudio2022InstallerProjects | 2.0.1 |
|
||||
| Windows Driver Kit | 10.1.26100.2161 |
|
||||
| Windows Driver Kit Visual Studio Extension | 10.0.26100.10 |
|
||||
| Windows Software Development Kit | 10.1.26100.1742 |
|
||||
| Windows Driver Kit Visual Studio Extension | 10.0.26100.12 |
|
||||
| Windows Software Development Kit | 10.1.26100.2454 |
|
||||
| WixToolset.WixToolsetVisualStudio2022Extension | 1.0.0.22 |
|
||||
|
||||
#### Microsoft Visual C++
|
||||
@@ -478,12 +477,12 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| -------------------------------------------- | ------------ | ----------- |
|
||||
| Microsoft Visual C++ 2013 Additional Runtime | x64 | 12.0.40660 |
|
||||
| Microsoft Visual C++ 2013 Minimum Runtime | x64 | 12.0.40660 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x64 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Debug Runtime | x64 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x64 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x86 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Debug Runtime | x86 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x86 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x64 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Debug Runtime | x64 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x64 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x86 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Debug Runtime | x86 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x86 | 14.42.34438 |
|
||||
|
||||
#### Installed Windows SDKs
|
||||
- 10.0.17763.0
|
||||
@@ -494,51 +493,42 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 10.0.26100.0
|
||||
|
||||
### .NET Core Tools
|
||||
- .NET Core SDK: 6.0.136, 6.0.203, 6.0.321, 6.0.428, 8.0.112, 8.0.206, 8.0.308, 8.0.405, 9.0.102
|
||||
- .NET Core SDK: 6.0.136, 6.0.203, 6.0.321, 6.0.428, 8.0.113, 8.0.206, 8.0.309, 8.0.406, 9.0.103, 9.0.200
|
||||
- .NET Framework: 4.7.2, 4.8, 4.8.1
|
||||
- Microsoft.AspNetCore.App: 6.0.5, 6.0.26, 6.0.36, 6.0.37, 8.0.6, 8.0.12, 9.0.1
|
||||
- Microsoft.NETCore.App: 6.0.5, 6.0.26, 6.0.36, 6.0.37, 8.0.6, 8.0.12, 9.0.1
|
||||
- Microsoft.WindowsDesktop.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.12, 9.0.1
|
||||
- Microsoft.AspNetCore.App: 6.0.5, 6.0.26, 6.0.36, 6.0.37, 8.0.6, 8.0.13, 9.0.2
|
||||
- Microsoft.NETCore.App: 6.0.5, 6.0.26, 6.0.36, 6.0.37, 8.0.6, 8.0.13, 9.0.2
|
||||
- Microsoft.WindowsDesktop.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.13, 9.0.2
|
||||
- nbgv 3.7.115+d31f50f4d1
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.7
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 12.1.0
|
||||
- Azure: 5.3.0
|
||||
- AzureRM: 6.13.1
|
||||
- Azure (Cached): 5.1.1.zip
|
||||
- AzureRM (Cached): 6.7.0.zip
|
||||
- AWSPowershell: 4.1.753
|
||||
- Az: 12.4.0
|
||||
- AWSPowershell: 4.1.773
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.25.0
|
||||
- Microsoft.Graph: 2.26.1
|
||||
- Pester: 3.4.0, 5.7.1
|
||||
- PowerShellGet: 1.0.0.1, 2.2.5
|
||||
- PSScriptAnalyzer: 1.23.0
|
||||
- PSWindowsUpdate: 2.2.1.5
|
||||
- SqlServer: 22.3.0
|
||||
- VSSetup: 2.2.16
|
||||
```
|
||||
Azure PowerShell module 2.1.0 and AzureRM PowerShell module 2.1.0 are installed
|
||||
and are available via 'Get-Module -ListAvailable'.
|
||||
All other versions are saved but not installed.
|
||||
```
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 8.0 |
|
||||
| Android Emulator | 35.3.11 |
|
||||
| Android Emulator | 35.4.9 |
|
||||
| Android SDK Build-tools | 35.0.0 35.0.1<br>34.0.0<br>33.0.0 33.0.1 33.0.2 33.0.3<br>32.0.0<br>31.0.0 |
|
||||
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3)<br>android-32 (rev 1)<br>android-31 (rev 1) |
|
||||
| Android SDK Platform-Tools | 35.0.2 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.18.1<br>3.22.1 |
|
||||
| CMake | 3.18.1<br>3.22.1<br>3.31.5 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 26.3.11579264<br>27.2.12479018 |
|
||||
| NDK | 26.3.11579264<br>27.2.12479018<br>28.0.13004108 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -546,16 +536,16 @@ All other versions are saved but not installed.
|
||||
| ANDROID_HOME | C:\Android\android-sdk |
|
||||
| ANDROID_NDK | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_NDK_HOME | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\28.0.13004108 |
|
||||
| ANDROID_NDK_ROOT | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_SDK_ROOT | C:\Android\android-sdk |
|
||||
|
||||
### Cached Docker images
|
||||
| Repository:Tag | Digest | Created |
|
||||
| ------------------------------------------------------------------------- | ------------------------------------------------------------------------ | ---------- |
|
||||
| mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2022 | sha256:84079c734ab5aec702409ef7967ec47af9468c56ff4046882239cabacda78097 | 2025-01-14 |
|
||||
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2022 | sha256:a2ca87058709f998d60ab5a49bd05db18005363b3368d0061bb48f99ee1658d5 | 2025-01-14 |
|
||||
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2022 | sha256:142e06b06dd9922d1e259c83cc057997a3ae71164ef7589bb3a2aa4f8690b9d8 | 2025-01-14 |
|
||||
| mcr.microsoft.com/windows/nanoserver:ltsc2022 | sha256:55474b390b2d25e98450356b381d6dc422e15fb79808970f724c0f34df0b217e | 2025-01-12 |
|
||||
| mcr.microsoft.com/windows/servercore:ltsc2022 | sha256:a7faef3c463f53996b00abff1cad6e979c75230bf9a55fdce77fe99c764971a5 | 2025-01-12 |
|
||||
| mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2022 | sha256:18b04328e660ff00250df1e36e0042b6363ec01f59601d33726563b5fa50e52f | 2025-02-12 |
|
||||
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2022 | sha256:2f5b08fd36b4087133d856389621eff5c0cf7e33b65f3905045c89d72e7a57da | 2025-02-11 |
|
||||
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2022 | sha256:6b9badb21d256e90f511565a8eb19a52dad56f8951c591255b6ef998d4ad1901 | 2025-02-12 |
|
||||
| mcr.microsoft.com/windows/nanoserver:ltsc2022 | sha256:f82cb05e20c4bfa93a007c9f073f83febd8bc6d16f98a3208f3baa486aafcdf4 | 2025-02-07 |
|
||||
| mcr.microsoft.com/windows/servercore:ltsc2022 | sha256:3cfddbce425e07cc658829098c29af86ff1a3ccc9b8d4735f5263a76ea4b7561 | 2025-02-07 |
|
||||
|
||||
|
||||
@@ -1,42 +1,43 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Windows] Removal of Azure and Azure Powershell module from windows images from 2025-03-01](https://github.com/actions/runner-images/issues/11483) |
|
||||
| [Windows Server 2025 will be Generally Available in GitHub Actions and Azure DevOps from 2025-04-01](https://github.com/actions/runner-images/issues/11742) |
|
||||
| [[Windows] Go version 1.20 and 1.21 will be removed from the images on 2025-05-05 and 1.24 will be set as default.](https://github.com/actions/runner-images/issues/11711) |
|
||||
| [[Windows 19 and 22] Node.js version 16 will be removed from Windows images on 2025-05-05](https://github.com/actions/runner-images/issues/11710) |
|
||||
| [Windows Server 2025 is now available](https://github.com/actions/runner-images/issues/11228) |
|
||||
| [[Windows] Breaking change : Docker Engine Version 26.* will be updated to Docker Engine Version 27.* from 2025-03-07](https://github.com/actions/runner-images/issues/11104) |
|
||||
***
|
||||
# Windows Server 2025
|
||||
- OS Version: 10.0.26100 Build 2894
|
||||
- Image Version: 20250209.1.0
|
||||
- OS Version: 10.0.26100 Build 3194
|
||||
- Image Version: 20250309.1.0
|
||||
|
||||
## Windows features
|
||||
- Windows Subsystem for Linux (WSLv1): Enabled
|
||||
- Windows Subsystem for Linux (Default, WSLv2): 2.4.10.0
|
||||
- Windows Subsystem for Linux (Default, WSLv2): 2.4.11.0
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- Bash 5.2.37(1)-release
|
||||
- Go 1.23.6
|
||||
- Go 1.23.7
|
||||
- Julia 1.10.5
|
||||
- Kotlin 2.1.10
|
||||
- LLVM 19.1.5
|
||||
- Node 22.13.1
|
||||
- LLVM 19.1.7
|
||||
- Node 22.14.0
|
||||
- Perl 5.40.0
|
||||
- PHP 8.4.3
|
||||
- PHP 8.4.4
|
||||
- Python 3.9.13
|
||||
- Ruby 3.3.7
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.4.2
|
||||
- Composer 2.8.5
|
||||
- Helm 3.16.4
|
||||
- Chocolatey 2.4.3
|
||||
- Composer 2.8.6
|
||||
- Helm 3.17.0
|
||||
- Miniconda 25.1.1 (pre-installed on the image but not added to PATH)
|
||||
- NPM 10.9.2
|
||||
- NuGet 6.12.2.1
|
||||
- NuGet 6.13.2.1
|
||||
- pip 25.0.1 (python 3.9)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.5.22
|
||||
- Vcpkg (build from commit 74ec888e38)
|
||||
- Vcpkg (build from commit 300239058e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -47,37 +48,37 @@
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.14
|
||||
- Gradle 8.12
|
||||
- Gradle 8.13
|
||||
- Maven 3.9.9
|
||||
- sbt 1.10.7
|
||||
- sbt 1.10.10
|
||||
|
||||
### Tools
|
||||
- 7zip 24.09
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.28.0
|
||||
- Bazel 8.0.1
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.33.13
|
||||
- Cabal 3.14.1.1
|
||||
- CMake 3.31.5
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker 26.1.3
|
||||
- Docker Compose v2 2.27.1
|
||||
- Docker-wincred 0.8.2
|
||||
- Docker 27.5.1
|
||||
- Docker Compose v2 2.32.2
|
||||
- Docker-wincred 0.9.2
|
||||
- ghc 9.12.1
|
||||
- Git 2.47.1.windows.2
|
||||
- Git 2.48.1.windows.1
|
||||
- Git LFS 3.6.1
|
||||
- ImageMagick 7.1.1-43
|
||||
- ImageMagick 7.1.1-44
|
||||
- jq 1.7.1
|
||||
- Kind 0.26.0
|
||||
- Kubectl 1.32.1
|
||||
- Kind 0.27.0
|
||||
- Kubectl 1.32.2
|
||||
- gcc 14.2.0
|
||||
- gdb 14.2
|
||||
- GNU Binutils 2.43
|
||||
- Newman 6.2.1
|
||||
- OpenSSL 3.4.0
|
||||
- OpenSSL 3.4.1
|
||||
- Packer 1.12.0
|
||||
- Pulumi 3.149.0
|
||||
- Pulumi 3.154.0
|
||||
- R 4.4.2
|
||||
- Service Fabric SDK 10.1.2493.9590
|
||||
- Stack 3.3.1
|
||||
@@ -86,35 +87,35 @@
|
||||
- WinAppDriver 1.2.2009.02003
|
||||
- WiX Toolset 3.14.1.8722
|
||||
- yamllint 1.35.1
|
||||
- zstd 1.5.6
|
||||
- zstd 1.5.7
|
||||
|
||||
### CLI Tools
|
||||
- AWS CLI 2.24.0
|
||||
- AWS SAM CLI 1.133.0
|
||||
- AWS CLI 2.24.20
|
||||
- AWS SAM CLI 1.134.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.68.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure DevOps CLI extension 1.0.1
|
||||
- GitHub CLI 2.66.1
|
||||
- GitHub CLI 2.68.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.84.1
|
||||
- Rust 1.84.1
|
||||
- Rustdoc 1.84.1
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.84
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 133.0.6943.60
|
||||
- Chrome Driver 133.0.6943.53
|
||||
- Microsoft Edge 132.0.2957.140
|
||||
- Microsoft Edge Driver 132.0.2957.140
|
||||
- Mozilla Firefox 135.0
|
||||
- Gecko Driver 0.35.0
|
||||
- Google Chrome 134.0.6998.36
|
||||
- Chrome Driver 134.0.6998.35
|
||||
- Microsoft Edge 134.0.3124.51
|
||||
- Microsoft Edge Driver 134.0.3124.51
|
||||
- Mozilla Firefox 136.0
|
||||
- Gecko Driver 0.36.0
|
||||
- IE Driver 4.14.0.0
|
||||
- Selenium server 4.28.0
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -154,12 +155,12 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.6
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 18.20.6
|
||||
- 20.18.2
|
||||
- 22.13.1
|
||||
- 18.20.7
|
||||
- 20.18.3
|
||||
- 22.14.0
|
||||
|
||||
#### Python
|
||||
- 3.9.13
|
||||
@@ -170,7 +171,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### PyPy
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.16 [PyPy 7.3.18]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
|
||||
#### Ruby
|
||||
- 3.1.6
|
||||
@@ -183,7 +184,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Property | Value |
|
||||
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| ServiceName | postgresql-x64-17 |
|
||||
| Version | 17.2 |
|
||||
| Version | 17.4 |
|
||||
| ServiceStatus | Stopped |
|
||||
| ServiceStartType | Disabled |
|
||||
| EnvironmentVariables | PGBIN=C:\Program Files\PostgreSQL\17\bin <br> PGDATA=C:\Program Files\PostgreSQL\17\data <br> PGROOT=C:\Program Files\PostgreSQL\17 |
|
||||
@@ -202,7 +203,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- MySQL 8.0.41.0
|
||||
- SQL OLEDB Driver 18.7.4.0
|
||||
- SQLPS 1.0
|
||||
- MongoDB Shell (mongosh) 2.3.9
|
||||
- MongoDB Shell (mongosh) 2.4.2
|
||||
|
||||
### Web Servers
|
||||
| Name | Version | ConfigFile | ServiceName | ServiceStatus | ListenPort |
|
||||
@@ -213,242 +214,240 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
### Visual Studio Enterprise 2022
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | --------------- | -------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2022 | 17.12.35707.178 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
|
||||
| Visual Studio Enterprise 2022 | 17.13.35825.156 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
|
||||
|
||||
#### Workloads, components and extensions
|
||||
| Package | Version |
|
||||
| ------------------------------------------------------------------------- | --------------- |
|
||||
| android | 35.0.7.0 |
|
||||
| Component.Android.NDK.R23C | 17.12.35410.122 |
|
||||
| Component.Android.SDK.MAUI | 17.12.35410.122 |
|
||||
| Component.Dotfuscator | 17.12.35410.122 |
|
||||
| Component.Linux.CMake | 17.12.35410.122 |
|
||||
| Component.Linux.RemoteFileExplorer | 17.12.35410.122 |
|
||||
| Component.MDD.Android | 17.12.35410.122 |
|
||||
| Component.MDD.Linux | 17.12.35410.122 |
|
||||
| Component.MDD.Linux.GCC.arm | 17.12.35410.122 |
|
||||
| Component.Microsoft.VisualStudio.LiveShare.2022 | 1.0.5940 |
|
||||
| Component.Microsoft.VisualStudio.RazorExtension | 17.12.35410.122 |
|
||||
| android | 35.0.39.0 |
|
||||
| Component.Android.NDK.R23C | 17.13.35710.127 |
|
||||
| Component.Android.SDK.MAUI | 17.13.35710.127 |
|
||||
| Component.Dotfuscator | 17.13.35710.127 |
|
||||
| Component.Linux.CMake | 17.13.35710.127 |
|
||||
| Component.Linux.RemoteFileExplorer | 17.13.35710.127 |
|
||||
| Component.MDD.Android | 17.13.35710.127 |
|
||||
| Component.MDD.Linux | 17.13.35710.127 |
|
||||
| Component.MDD.Linux.GCC.arm | 17.13.35710.127 |
|
||||
| Component.Microsoft.VisualStudio.LiveShare.2022 | 1.0.5949 |
|
||||
| Component.Microsoft.VisualStudio.RazorExtension | 17.13.35710.127 |
|
||||
| Component.Microsoft.VisualStudio.Tools.Applications.amd64 | 17.0.33617.0 |
|
||||
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 17.12.35410.122 |
|
||||
| Component.Microsoft.Web.LibraryManager | 17.12.35410.122 |
|
||||
| Component.Microsoft.WebTools.BrowserLink.WebLivePreview | 17.12.8.55161 |
|
||||
| Component.Microsoft.Windows.DriverKit | 10.0.26100.10 |
|
||||
| Component.OpenJDK | 17.12.35410.122 |
|
||||
| Component.UnityEngine.x64 | 17.12.35410.122 |
|
||||
| Component.Unreal.Ide | 17.12.35410.122 |
|
||||
| Component.VisualStudio.GitHub.Copilot | 17.12.35707.178 |
|
||||
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 17.13.35710.127 |
|
||||
| Component.Microsoft.Web.LibraryManager | 17.13.35710.127 |
|
||||
| Component.Microsoft.WebTools.BrowserLink.WebLivePreview | 17.13.10.44860 |
|
||||
| Component.Microsoft.Windows.DriverKit | 10.0.26100.12 |
|
||||
| Component.OpenJDK | 17.13.35710.127 |
|
||||
| Component.UnityEngine.x64 | 17.13.35710.127 |
|
||||
| Component.Unreal.Ide | 17.13.35710.127 |
|
||||
| Component.VisualStudio.GitHub.Copilot | 17.13.35820.181 |
|
||||
| Component.VSInstallerProjects2022 | 2.0.1 |
|
||||
| Component.WixToolset.VisualStudioExtension.Dev17 | 1.0.0.22 |
|
||||
| Component.WixToolset.VisualStudioExtension.Schemas3 | 1.0.0.22 |
|
||||
| Component.Xamarin.RemotedSimulator | 17.12.35410.122 |
|
||||
| ios | 18.1.9163.0 |
|
||||
| maccatalyst | 18.1.9163.0 |
|
||||
| Component.Xamarin.RemotedSimulator | 17.13.35710.127 |
|
||||
| ios | 18.2.9180.0 |
|
||||
| maccatalyst | 18.2.9180.0 |
|
||||
| maui.blazor | 9.0.14.12048 |
|
||||
| maui.core | 9.0.14.12048 |
|
||||
| maui.windows | 9.0.14.12048 |
|
||||
| Microsoft.Component.Azure.DataLake.Tools | 17.12.35410.122 |
|
||||
| Microsoft.Component.ClickOnce | 17.12.35410.122 |
|
||||
| Microsoft.Component.CodeAnalysis.SDK | 17.12.35410.122 |
|
||||
| Microsoft.Component.MSBuild | 17.12.35410.122 |
|
||||
| Microsoft.Component.NetFX.Native | 17.12.35410.122 |
|
||||
| Microsoft.Component.PythonTools | 17.12.35410.122 |
|
||||
| Microsoft.Component.PythonTools.Web | 17.12.35410.122 |
|
||||
| Microsoft.Component.VC.Runtime.UCRTSDK | 17.12.35410.122 |
|
||||
| Microsoft.ComponentGroup.Blend | 17.12.35410.122 |
|
||||
| Microsoft.ComponentGroup.ClickOnce.Publish | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.5.2.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.6.2.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.6.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.7.1.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.7.2.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.7.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.8.1.SDK | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.8.1.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.8.SDK | 17.12.35410.122 |
|
||||
| Microsoft.Net.Component.4.8.TargetingPack | 17.12.35410.122 |
|
||||
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.12.35410.122 |
|
||||
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.12.35410.122 |
|
||||
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.12.35410.122 |
|
||||
| microsoft.net.runtime.android | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.android.aot | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.android.aot.net8 | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.android.net8 | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.ios | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.ios.net8 | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.maccatalyst | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.maccatalyst.net8 | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.mono.tooling | 9.0.124.61010 |
|
||||
| microsoft.net.runtime.mono.tooling.net8 | 9.0.124.61010 |
|
||||
| microsoft.net.sdk.emscripten | 9.0.11.10403 |
|
||||
| Microsoft.NetCore.Component.DevelopmentTools | 17.12.35410.122 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 17.12.35707.178 |
|
||||
| Microsoft.NetCore.Component.Runtime.9.0 | 17.12.35707.178 |
|
||||
| Microsoft.NetCore.Component.SDK | 17.12.35707.178 |
|
||||
| Microsoft.NetCore.Component.Web | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.AspNet | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.AspNet45 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.AuthoringTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ClientLibs | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Powershell | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ResourceManager.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ServiceFabric.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Waverton | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Waverton.BuildTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.ClassDesigner | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.CodeMap | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Common.Azure.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.CoreEditor | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.CppBuildInsights | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Debugger.JustInTime | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Debugger.Snapshot | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.DiagnosticTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.DockerTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.DslTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Embedded | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.EntityFramework | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.FSharp | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.Desktop | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.WebTemplates | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.GraphDocument | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Graphics | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Graphics.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.HLSL | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.IISExpress | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.IntelliCode | 17.12.35527.102 |
|
||||
| Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.TypeScript | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.LinqToSql | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.LiveUnitTesting | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Core | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Merq | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.MonoDebugger | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.MSODBC.SQL | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Node.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.NuGet | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.NuGet.BuildTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.PortableLibrary | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.Compiler | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Sharepoint.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.SQL.CLR | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.SQL.DataSources | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.SQL.SSDT | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.TeamOffice | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.TestTools.CodedUITest | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.TestTools.WebLoadTest | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.TextTemplating | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.TypeScript.TSServer | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Unity | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ASAN | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.CLI.Support | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.CMake.Project | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.CoreIde | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.DiagnosticTools | 17.12.35527.67 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.Clang | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Modules.x86.x64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.MSM | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Vcpkg | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.VSSDK | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Wcf.Tooling | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Web | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.WebDeploy | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows10SDK | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.22621 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.26100 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.WindowsAppSdkSupport.CSharp | 17.12.35707.178 |
|
||||
| Microsoft.VisualStudio.Component.Workflow | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Component.WslDebugging | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.All | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Android | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Blazor | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.iOS | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.MacCatalyst | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Shared | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Windows | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.VC.v142 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WindowsAppDevelopment.Prerequisites | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.Azure | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.CoreEditor | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.Data | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.DataScience | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedDesktop | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedGame | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NativeDesktop | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NativeGame | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NativeMobile | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NetCrossPlat | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.NetWeb | 17.12.35504.99 |
|
||||
| Microsoft.VisualStudio.Workload.Node | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.Office | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.Python | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.Universal | 17.12.35410.122 |
|
||||
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 17.12.35410.122 |
|
||||
| runtimes.ios | 9.0.124.61010 |
|
||||
| runtimes.ios.net8 | 9.0.124.61010 |
|
||||
| runtimes.maccatalyst | 9.0.124.61010 |
|
||||
| runtimes.maccatalyst.net8 | 9.0.124.61010 |
|
||||
| wasm.tools | 9.0.124.61010 |
|
||||
| Microsoft.Component.Azure.DataLake.Tools | 17.13.35710.127 |
|
||||
| Microsoft.Component.ClickOnce | 17.13.35710.127 |
|
||||
| Microsoft.Component.CodeAnalysis.SDK | 17.13.35710.127 |
|
||||
| Microsoft.Component.MSBuild | 17.13.35710.127 |
|
||||
| Microsoft.Component.NetFX.Native | 17.13.35710.127 |
|
||||
| Microsoft.Component.PythonTools | 17.13.35710.127 |
|
||||
| Microsoft.Component.PythonTools.Web | 17.13.35710.127 |
|
||||
| Microsoft.Component.VC.Runtime.UCRTSDK | 17.13.35710.127 |
|
||||
| Microsoft.ComponentGroup.Blend | 17.13.35710.127 |
|
||||
| Microsoft.ComponentGroup.ClickOnce.Publish | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.5.2.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.6.2.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.6.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.7.1.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.7.2.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.7.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.8.1.SDK | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.8.1.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.8.SDK | 17.13.35710.127 |
|
||||
| Microsoft.Net.Component.4.8.TargetingPack | 17.13.35710.127 |
|
||||
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.13.35710.127 |
|
||||
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.13.35710.127 |
|
||||
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.13.35710.127 |
|
||||
| microsoft.net.runtime.android | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.android.aot | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.android.aot.net8 | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.android.net8 | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.ios | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.ios.net8 | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.maccatalyst | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.maccatalyst.net8 | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.mono.tooling | 9.0.225.6610 |
|
||||
| microsoft.net.runtime.mono.tooling.net8 | 9.0.225.6610 |
|
||||
| microsoft.net.sdk.emscripten | 9.0.12.6102 |
|
||||
| Microsoft.NetCore.Component.DevelopmentTools | 17.13.35710.127 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 17.13.35806.99 |
|
||||
| Microsoft.NetCore.Component.Runtime.9.0 | 17.13.35806.99 |
|
||||
| Microsoft.NetCore.Component.SDK | 17.13.35806.99 |
|
||||
| Microsoft.NetCore.Component.Web | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.AspNet | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.AspNet45 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.AuthoringTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ClientLibs | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ResourceManager.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ServiceFabric.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Waverton | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Waverton.BuildTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.ClassDesigner | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.CodeMap | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Common.Azure.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.CoreEditor | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.CppBuildInsights | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Debugger.JustInTime | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Debugger.Snapshot | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.DiagnosticTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.DockerTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.DslTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Embedded | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.EntityFramework | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.FSharp | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.Desktop | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.WebTemplates | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.GraphDocument | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Graphics | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Graphics.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.HLSL | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.IISExpress | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.IntelliCode | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.TypeScript | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.LinqToSql | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.LiveUnitTesting | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Core | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.MonoDebugger | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.MSODBC.SQL | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Node.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.NuGet | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.NuGet.BuildTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.PortableLibrary | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.Compiler | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Sharepoint.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.SQL.CLR | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.SQL.DataSources | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.SQL.SSDT | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.TeamOffice | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.TestTools.CodedUITest | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.TestTools.WebLoadTest | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.TextTemplating | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.TypeScript.TSServer | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Unity | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ASAN | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.CLI.Support | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.CMake.Project | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.CoreIde | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.DiagnosticTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.Clang | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Modules.x86.x64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.MSM | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Vcpkg | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.VSSDK | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Wcf.Tooling | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Web | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.WebDeploy | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows10SDK | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.22621 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.26100 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.WindowsAppSdkSupport.CSharp | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.Workflow | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Component.WslDebugging | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.All | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Android | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Blazor | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.iOS | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.MacCatalyst | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Shared | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Windows | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.VC.v142 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WindowsAppDevelopment.Prerequisites | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.Azure | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.CoreEditor | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.Data | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.DataScience | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedDesktop | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedGame | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.NativeDesktop | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.NativeGame | 17.13.35818.55 |
|
||||
| Microsoft.VisualStudio.Workload.NativeMobile | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.NetCrossPlat | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.NetWeb | 17.13.35730.67 |
|
||||
| Microsoft.VisualStudio.Workload.Node | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.Office | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.Python | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.Universal | 17.13.35710.127 |
|
||||
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 17.13.35710.127 |
|
||||
| runtimes.ios | 9.0.225.6610 |
|
||||
| runtimes.ios.net8 | 9.0.225.6610 |
|
||||
| runtimes.maccatalyst | 9.0.225.6610 |
|
||||
| runtimes.maccatalyst.net8 | 9.0.225.6610 |
|
||||
| wasm.tools | 9.0.225.6610 |
|
||||
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 3.0.4 |
|
||||
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 3.0.1 |
|
||||
| SSIS.MicrosoftDataToolsIntegrationServices | 1.5 |
|
||||
| VisualStudioClient.MicrosoftVisualStudio2022InstallerProjects | 2.0.1 |
|
||||
| Windows Driver Kit Visual Studio Extension | 10.0.26100.10 |
|
||||
| Windows Software Development Kit | 10.1.26100.1742 |
|
||||
| Windows Driver Kit Visual Studio Extension | 10.0.26100.12 |
|
||||
| Windows Software Development Kit | 10.1.26100.2454 |
|
||||
| WixToolset.WixToolsetVisualStudio2022Extension | 1.0.0.22 |
|
||||
|
||||
#### Microsoft Visual C++
|
||||
@@ -456,23 +455,23 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| -------------------------------------------- | ------------ | ----------- |
|
||||
| Microsoft Visual C++ 2013 Additional Runtime | x64 | 12.0.40660 |
|
||||
| Microsoft Visual C++ 2013 Minimum Runtime | x64 | 12.0.40660 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x64 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Debug Runtime | x64 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x64 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x86 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Debug Runtime | x86 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x86 | 14.42.34433 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x64 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Debug Runtime | x64 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x64 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Additional Runtime | x86 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Debug Runtime | x86 | 14.42.34438 |
|
||||
| Microsoft Visual C++ 2022 Minimum Runtime | x86 | 14.42.34438 |
|
||||
|
||||
#### Installed Windows SDKs
|
||||
- 10.0.22621.0
|
||||
- 10.0.26100.0
|
||||
|
||||
### .NET Core Tools
|
||||
- .NET Core SDK: 8.0.112, 8.0.206, 8.0.308, 8.0.405, 9.0.102
|
||||
- .NET Core SDK: 8.0.113, 8.0.206, 8.0.309, 8.0.406, 9.0.103, 9.0.200
|
||||
- .NET Framework: 4.8, 4.8.1
|
||||
- Microsoft.AspNetCore.App: 8.0.6, 8.0.12, 9.0.1
|
||||
- Microsoft.NETCore.App: 8.0.6, 8.0.12, 9.0.1
|
||||
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.12, 9.0.1
|
||||
- Microsoft.AspNetCore.App: 8.0.6, 8.0.13, 9.0.2
|
||||
- Microsoft.NETCore.App: 8.0.6, 8.0.13, 9.0.2
|
||||
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.13, 9.0.2
|
||||
- nbgv 3.7.115+d31f50f4d1
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -480,10 +479,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 12.4.0
|
||||
- AWSPowershell: 4.1.753
|
||||
- AWSPowershell: 4.1.773
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.25.0
|
||||
- Microsoft.Graph: 2.26.1
|
||||
- Pester: 3.4.0, 5.7.1
|
||||
- PowerShellGet: 1.0.0.1, 2.2.5
|
||||
- PSScriptAnalyzer: 1.23.0
|
||||
@@ -495,15 +494,15 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| Android Emulator | 35.3.11 |
|
||||
| Android Emulator | 35.4.9 |
|
||||
| Android SDK Build-tools | 35.0.0 35.0.1<br>34.0.0 |
|
||||
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 35.0.2 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.22.1<br>3.30.5 |
|
||||
| CMake | 3.22.1<br>3.30.5<br>3.31.5 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 26.3.11579264<br>27.2.12479018 |
|
||||
| NDK | 26.3.11579264<br>27.2.12479018<br>28.0.13004108 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -511,7 +510,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| ANDROID_HOME | C:\Android\android-sdk |
|
||||
| ANDROID_NDK | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_NDK_HOME | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\28.0.13004108 |
|
||||
| ANDROID_NDK_ROOT | C:\Android\android-sdk\ndk\27.2.12479018 |
|
||||
| ANDROID_SDK_ROOT | C:\Android\android-sdk |
|
||||
|
||||
|
||||
@@ -2,17 +2,30 @@
|
||||
## File: Install-VisualStudio.ps1
|
||||
## Desc: Install Visual Studio
|
||||
################################################################################
|
||||
|
||||
$vsToolset = (Get-ToolsetContent).visualStudio
|
||||
|
||||
# Install VS
|
||||
Install-VisualStudio `
|
||||
-Version $vsToolset.subversion `
|
||||
-Edition $vsToolset.edition `
|
||||
-Channel $vsToolset.channel `
|
||||
-RequiredComponents $vsToolset.workloads `
|
||||
-ExtraArgs "--allWorkloads --includeRecommended --remove Component.CPython3.x64" `
|
||||
-SignatureThumbprint $vsToolset.signature
|
||||
if (Test-IsWin19) {
|
||||
# Install Visual Studio for Windows 19
|
||||
Install-VisualStudio `
|
||||
-Version $vsToolset.subversion `
|
||||
-Edition $vsToolset.edition `
|
||||
-Channel $vsToolset.channel `
|
||||
-RequiredComponents $vsToolset.workloads `
|
||||
-ExtraArgs "--allWorkloads --includeRecommended --remove Component.CPython3.x64" `
|
||||
-SignatureThumbprint $vsToolset.signature
|
||||
}
|
||||
|
||||
if ( (Test-IsWin22) -or (Test-IsWin25) ) {
|
||||
# Install Visual Studio for Windows 22 and 25 with InstallChannel
|
||||
Install-VisualStudio `
|
||||
-Version $vsToolset.subversion `
|
||||
-Edition $vsToolset.edition `
|
||||
-Channel $vsToolset.channel `
|
||||
-InstallChannel $vsToolset.installChannel `
|
||||
-RequiredComponents $vsToolset.workloads `
|
||||
-ExtraArgs "--allWorkloads --includeRecommended --remove Component.CPython3.x64" `
|
||||
-SignatureThumbprint $vsToolset.signature
|
||||
}
|
||||
|
||||
# Find the version of VS installed for this instance
|
||||
# Only supports a single instance
|
||||
|
||||
@@ -117,6 +117,7 @@ $tools.AddToolVersion("WinAppDriver", $(Get-WinAppDriver))
|
||||
$tools.AddToolVersion("WiX Toolset", $(Get-WixVersion))
|
||||
$tools.AddToolVersion("yamllint", $(Get-YAMLLintVersion))
|
||||
$tools.AddToolVersion("zstd", $(Get-ZstdVersion))
|
||||
$tools.AddToolVersion("Ninja", $(Get-NinjaVersion))
|
||||
|
||||
# CLI Tools
|
||||
$cliTools = $installedSoftware.AddHeader("CLI Tools")
|
||||
@@ -235,14 +236,6 @@ $psTools.AddToolVersion("PowerShell", $(Get-PowershellCoreVersion))
|
||||
$psModules = $psTools.AddHeader("Powershell Modules")
|
||||
$psModules.AddNodes($(Get-PowerShellModules))
|
||||
|
||||
$azPsNotes = @'
|
||||
Azure PowerShell module 2.1.0 and AzureRM PowerShell module 2.1.0 are installed
|
||||
and are available via 'Get-Module -ListAvailable'.
|
||||
All other versions are saved but not installed.
|
||||
'@
|
||||
if (-not (Test-IsWin25)) {
|
||||
$psModules.AddNote($azPsNotes)
|
||||
}
|
||||
|
||||
# Android
|
||||
$android = $installedSoftware.AddHeader("Android")
|
||||
|
||||
@@ -322,3 +322,7 @@ function Get-MongoshVersion {
|
||||
function Get-WSL2Version {
|
||||
return $((Get-AppxPackage -Name "MicrosoftCorporationII.WindowsSubsystemForLinux").version)
|
||||
}
|
||||
|
||||
function Get-NinjaVersion {
|
||||
return $(ninja --version)
|
||||
}
|
||||
|
||||
@@ -14,6 +14,9 @@ Function Install-VisualStudio {
|
||||
|
||||
.PARAMETER Channel
|
||||
The channel of Visual Studio that will be installed. Required parameter.
|
||||
|
||||
.PARAMETER InstallChannel
|
||||
The InstallChannelUri of Visual Studio that will be installed. Required parameter.
|
||||
|
||||
.PARAMETER RequiredComponents
|
||||
The list of required components. Required parameter.
|
||||
@@ -27,15 +30,22 @@ Function Install-VisualStudio {
|
||||
[Parameter(Mandatory)] [String] $Version,
|
||||
[Parameter(Mandatory)] [String] $Edition,
|
||||
[Parameter(Mandatory)] [String] $Channel,
|
||||
[String] $InstallChannel = "",
|
||||
[Parameter(Mandatory)] [String[]] $RequiredComponents,
|
||||
[String] $ExtraArgs = "",
|
||||
[Parameter(Mandatory)] [String[]] $SignatureThumbprint
|
||||
)
|
||||
|
||||
$bootstrapperUrl = "https://aka.ms/vs/${Version}/${Channel}/vs_${Edition}.exe"
|
||||
|
||||
|
||||
if (-not (Test-IsWin19)) {
|
||||
$bootstrapperUrl = "https://aka.ms/vs/${Version}/postGRO-${Channel}/vs_${Edition}.exe"
|
||||
} else {
|
||||
$bootstrapperUrl = "https://aka.ms/vs/${Version}/${Channel}/vs_${Edition}.exe"
|
||||
}
|
||||
$channelUri = "https://aka.ms/vs/${Version}/${Channel}/channel"
|
||||
$channelId = "VisualStudio.${Version}.Release"
|
||||
$productId = "Microsoft.VisualStudio.Product.${Edition}"
|
||||
$installChannelUri = "https://aka.ms/vs/${Version}/${Channel}/${installchannel}/channel"
|
||||
|
||||
Write-Host "Downloading Bootstrapper ..."
|
||||
$bootstrapperFilePath = Invoke-DownloadWithRetry $BootstrapperUrl
|
||||
@@ -45,6 +55,7 @@ Function Install-VisualStudio {
|
||||
|
||||
try {
|
||||
$responseData = @{
|
||||
"installChannelUri" = $installChannelUri
|
||||
"channelUri" = $channelUri
|
||||
"channelId" = $channelId
|
||||
"productId" = $productId
|
||||
|
||||
@@ -103,3 +103,31 @@ Describe "ImageMagick" {
|
||||
"magick -version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Ninja" {
|
||||
BeforeAll {
|
||||
$ninjaProjectPath = $(Join-Path $env:TEMP_DIR "ninjaproject")
|
||||
New-item -Path $ninjaProjectPath -ItemType Directory -Force
|
||||
@'
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(NinjaTest NONE)
|
||||
'@ | Out-File -FilePath "$ninjaProjectPath/CMakeLists.txt" -Encoding utf8
|
||||
|
||||
$ninjaProjectBuildPath = $(Join-Path $ninjaProjectPath "build")
|
||||
New-item -Path $ninjaProjectBuildPath -ItemType Directory -Force
|
||||
Set-Location $ninjaProjectBuildPath
|
||||
}
|
||||
|
||||
It "Make a simple ninja project" {
|
||||
"cmake -GNinja $ninjaProjectPath" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
It "build.ninja file should exist" {
|
||||
$buildFilePath = $(Join-Path $ninjaProjectBuildPath "build.ninja")
|
||||
$buildFilePath | Should -Exist
|
||||
}
|
||||
|
||||
It "Ninja" {
|
||||
"ninja --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
@@ -191,8 +191,7 @@ function Get-ModuleVersionAsJob {
|
||||
$modulePath,
|
||||
$moduleName
|
||||
)
|
||||
# Disable warning messages to prevent additional warnings about Az and Azurerm modules in the same session
|
||||
$WarningPreference = "SilentlyContinue"
|
||||
# No need to suppress AzureRM warnings now, only Az module is considered
|
||||
$env:PsModulePath = "$modulePath;$env:PsModulePath"
|
||||
Import-Module -Name $moduleName
|
||||
(Get-Module -Name $moduleName).Version.ToString()
|
||||
|
||||
@@ -93,26 +93,6 @@
|
||||
{"name": "AWSPowershell"}
|
||||
],
|
||||
"azureModules": [
|
||||
{
|
||||
"name": "azurerm",
|
||||
"versions": [
|
||||
"6.13.1"
|
||||
],
|
||||
"zip_versions": [
|
||||
"6.7.0"
|
||||
],
|
||||
"default": "6.13.1"
|
||||
},
|
||||
{
|
||||
"name": "azure",
|
||||
"versions": [
|
||||
"5.3.0"
|
||||
],
|
||||
"zip_versions": [
|
||||
"5.1.1"
|
||||
],
|
||||
"default": "5.3.0"
|
||||
},
|
||||
{
|
||||
"name": "az",
|
||||
"versions": [
|
||||
@@ -363,8 +343,8 @@
|
||||
"mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019"
|
||||
],
|
||||
"components": {
|
||||
"docker": "26.1.3",
|
||||
"compose": "2.27.1"
|
||||
"docker": "27.5.1",
|
||||
"compose": "2.32.2"
|
||||
}
|
||||
},
|
||||
"pipx": [
|
||||
@@ -438,7 +418,8 @@
|
||||
"name": "cmake.install",
|
||||
"args": [ "--installargs", "ADD_CMAKE_TO_PATH=\"System\"" ]
|
||||
},
|
||||
{ "name": "imagemagick" }
|
||||
{ "name": "imagemagick" },
|
||||
{ "name": "ninja" }
|
||||
]
|
||||
},
|
||||
"node": {
|
||||
|
||||
@@ -92,26 +92,6 @@
|
||||
{"name": "AWSPowershell"}
|
||||
],
|
||||
"azureModules": [
|
||||
{
|
||||
"name": "azurerm",
|
||||
"versions": [
|
||||
"6.13.1"
|
||||
],
|
||||
"zip_versions": [
|
||||
"6.7.0"
|
||||
],
|
||||
"default": "6.13.1"
|
||||
},
|
||||
{
|
||||
"name": "azure",
|
||||
"versions": [
|
||||
"5.3.0"
|
||||
],
|
||||
"zip_versions": [
|
||||
"5.1.1"
|
||||
],
|
||||
"default": "5.3.0"
|
||||
},
|
||||
{
|
||||
"name": "az",
|
||||
"versions": [
|
||||
@@ -180,7 +160,11 @@
|
||||
"subversion" : "17",
|
||||
"edition" : "Enterprise",
|
||||
"channel": "release",
|
||||
"signature": "245D262748012A4FE6CE8BA6C951A4C4AFBC3E5D",
|
||||
"installChannel": "658092423_1519083591",
|
||||
"signature": [
|
||||
"245D262748012A4FE6CE8BA6C951A4C4AFBC3E5D",
|
||||
"8F985BE8FD256085C90A95D3C74580511A1DB975"
|
||||
],
|
||||
"workloads": [
|
||||
"Component.Dotfuscator",
|
||||
"Component.Linux.CMake",
|
||||
@@ -287,8 +271,8 @@
|
||||
"mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2022"
|
||||
],
|
||||
"components": {
|
||||
"docker": "26.1.3",
|
||||
"compose": "2.27.1"
|
||||
"docker": "27.5.1",
|
||||
"compose": "2.32.2"
|
||||
}
|
||||
},
|
||||
"pipx": [
|
||||
@@ -355,7 +339,8 @@
|
||||
"name": "cmake.install",
|
||||
"args": [ "--installargs", "ADD_CMAKE_TO_PATH=\"System\"" ]
|
||||
},
|
||||
{ "name": "imagemagick" }
|
||||
{ "name": "imagemagick" },
|
||||
{ "name": "ninja" }
|
||||
]
|
||||
},
|
||||
"node": {
|
||||
|
||||
@@ -137,7 +137,11 @@
|
||||
"subversion" : "17",
|
||||
"edition" : "Enterprise",
|
||||
"channel": "release",
|
||||
"signature": "245D262748012A4FE6CE8BA6C951A4C4AFBC3E5D",
|
||||
"installChannel": "658092423_1519083591",
|
||||
"signature": [
|
||||
"245D262748012A4FE6CE8BA6C951A4C4AFBC3E5D",
|
||||
"8F985BE8FD256085C90A95D3C74580511A1DB975"
|
||||
],
|
||||
"workloads": [
|
||||
"Component.Dotfuscator",
|
||||
"Component.Linux.CMake",
|
||||
@@ -228,8 +232,8 @@
|
||||
"docker": {
|
||||
"images": [],
|
||||
"components": {
|
||||
"docker": "26.1.3",
|
||||
"compose": "2.27.1"
|
||||
"docker": "27.5.1",
|
||||
"compose": "2.32.2"
|
||||
}
|
||||
},
|
||||
"pipx": [
|
||||
@@ -294,7 +298,8 @@
|
||||
"name": "strawberryperl" ,
|
||||
"args": [ "--version", "5.40.0.1" ]
|
||||
},
|
||||
{ "name": "imagemagick" }
|
||||
{ "name": "imagemagick" },
|
||||
{ "name": "ninja" }
|
||||
]
|
||||
},
|
||||
"node": {
|
||||
|
||||
Reference in New Issue
Block a user