Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4bf3b4b00e |
+1
-1
@@ -23,7 +23,7 @@ Here are a few things you can do that will increase the likelihood of your pull
|
||||
- Follow the style guide for [Powershell](https://github.com/PoshCode/PowerShellPracticeAndStyle) when writing Windows scripts. There is currently no set style for the Shell scripts that run Linux installs :soon:.
|
||||
- Include complete details of why this is needed in the PR description.
|
||||
- Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests.
|
||||
- Write [good commit messages](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
|
||||
- Write [good commit messages](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
|
||||
- For new tools:
|
||||
- Make sure that the tool satisfies the [Software Guidelines](README.md#software-guidelines).
|
||||
- Create an issue and get approval from us to add this tool to the image before creating the pull request.
|
||||
|
||||
@@ -23,8 +23,8 @@ To build a VM machine from this repo's source, see the [instructions](docs/creat
|
||||
| Ubuntu 24.04 | `ubuntu-latest` or `ubuntu-24.04` | [ubuntu-24.04] |  |
|
||||
| Ubuntu 22.04 | `ubuntu-22.04` | [ubuntu-22.04] |  |
|
||||
| Ubuntu 20.04 <sup>deprecated</sup> | `ubuntu-20.04` | [ubuntu-20.04] |  |
|
||||
| macOS 15 | `macos-15-large`| [macOS-15] |  |
|
||||
| macOS 15 Arm64 | `macos-15` or `macos-15-xlarge` | [macOS-15-arm64] |  |
|
||||
| macOS 15 <sup>beta</sup> | `macos-15-large`| [macOS-15] |  |
|
||||
| macOS 15 Arm64 <sup>beta</sup> | `macos-15` or `macos-15-xlarge` | [macOS-15-arm64] |  |
|
||||
| macOS 14 | `macos-latest-large` or `macos-14-large`| [macOS-14] |  |
|
||||
| macOS 14 Arm64 |`macos-latest`, `macos-14`, `macos-latest-xlarge` or `macos-14-xlarge`| [macOS-14-arm64] |  |
|
||||
| macOS 13 | `macos-13` or `macos-13-large` | [macOS-13] |  |
|
||||
@@ -131,7 +131,7 @@ We use third-party package managers to install software during the image generat
|
||||
|
||||
| Operating system | Package manager | Third-party repos and packages |
|
||||
| :--- | :---: | ---: |
|
||||
| Ubuntu | [APT](https://wiki.debian.org/Apt) | [containers](https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable) (Ubuntu 20 only) <br/> [docker](https://download.docker.com/linux/ubuntu) (Ubuntu20 0nly) <br/> [Eclipse-Temurin (Adoptium)](https://packages.adoptium.net/artifactory/deb/) <br/> [Erlang](https://packages.erlang-solutions.com/ubuntu) <br/> [Firefox](https://ppa.launchpad.net/mozillateam/ppa/ubuntu) <br/> [git-lfs](https://packagecloud.io/install/repositories/github/git-lfs) <br/> [git](https://launchpad.net/~git-core/+archive/ubuntu/ppa) <br/> [Google Cloud CLI](https://packages.cloud.google.com/apt) <br/> [Heroku](https://cli-assets.heroku.com/channels/stable/apt) <br/> [HHvm](https://dl.hhvm.com/ubuntu) <br/> [MongoDB](https://repo.mongodb.org/apt/ubuntu) <br/> [Mono](https://download.mono-project.com/repo/ubuntu) <br/> [MS Edge](https://packages.microsoft.com/repos/edge) <br/> [PostgreSQL](https://apt.postgresql.org/pub/repos/apt/) <br/> [R](https://cloud.r-project.org/bin/linux/ubuntu) |
|
||||
| Ubuntu | [APT](https://wiki.debian.org/Apt) | [containers](https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable) (Ubuntu 20 only) <br/> [docker](https://download.docker.com/linux/ubuntu) (Ubuntu20 0nly) <br/> [Eclipse-Temurin (Adoptium)](https://packages.adoptium.net/artifactory/deb/) <br/> [Erlang](https://packages.erlang-solutions.com/ubuntu) <br/> [Firefox](http://ppa.launchpad.net/mozillateam/ppa/ubuntu) <br/> [git-lfs](https://packagecloud.io/install/repositories/github/git-lfs) <br/> [git](https://launchpad.net/~git-core/+archive/ubuntu/ppa) <br/> [Google Cloud CLI](https://packages.cloud.google.com/apt) <br/> [Heroku](https://cli-assets.heroku.com/channels/stable/apt) <br/> [HHvm](https://dl.hhvm.com/ubuntu) <br/> [MongoDB](https://repo.mongodb.org/apt/ubuntu) <br/> [Mono](https://download.mono-project.com/repo/ubuntu) <br/> [MS Edge](https://packages.microsoft.com/repos/edge) <br/> [PostgreSQL](https://apt.postgresql.org/pub/repos/apt/) <br/> [R](https://cloud.r-project.org/bin/linux/ubuntu) |
|
||||
| | [pipx](https://pypa.github.io/pipx) | ansible-core <br/>yamllint |
|
||||
| Windows | [Chocolatey](https://chocolatey.org) | No third-party repos installed |
|
||||
| macOS | [Homebrew](https://brew.sh) | [aws-cli v2](https://github.com/aws/homebrew-tap) </br> [azure/bicep](https://github.com/Azure/homebrew-bicep) </br> [mongodb/brew](https://github.com/mongodb/homebrew-brew) |
|
||||
|
||||
@@ -164,7 +164,7 @@ Function GenerateResourcesAndImage {
|
||||
|
||||
# Prepare list of allowed inbound IP addresses
|
||||
if ($RestrictToAgentIpAddress) {
|
||||
$AgentIp = (Invoke-RestMethod https://ipinfo.io/json).ip
|
||||
$AgentIp = (Invoke-RestMethod http://ipinfo.io/json).ip
|
||||
if (-not $AgentIp) {
|
||||
throw "Unable to determine agent IP address."
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
# Port of Gavin Brock's Perl kcpassword generator to Python, by Tom Taylor
|
||||
# <[email protected]>.
|
||||
# Perl version: https://www.brock-family.org/gavin/perl/kcpassword.html
|
||||
# Perl version: http://www.brock-family.org/gavin/perl/kcpassword.html
|
||||
# This script was taken from https://github.com/timsutton/osx-vm-templates/blob/master/scripts/support/set_kcpassword.py
|
||||
# Distributed by MIT license, license can be found at the bottom of this script
|
||||
|
||||
@@ -45,4 +45,4 @@ Copyright (c) 2013-2017 Timothy Sutton
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
"""
|
||||
"""
|
||||
@@ -3,9 +3,9 @@
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from April, 08](https://github.com/actions/runner-images/issues/11486) |
|
||||
***
|
||||
# macOS 13
|
||||
- OS Version: macOS 13.7.5 (22H527)
|
||||
- OS Version: macOS 13.7.4 (22H420)
|
||||
- Kernel Version: Darwin 22.6.0
|
||||
- Image Version: 20250407.927
|
||||
- Image Version: 20250331.901
|
||||
|
||||
## Installed Software
|
||||
|
||||
@@ -29,17 +29,17 @@
|
||||
- Ruby 3.3.7
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.6.7
|
||||
- Bundler 2.6.6
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Composer 2.8.8
|
||||
- Homebrew 4.4.27
|
||||
- Composer 2.8.6
|
||||
- Homebrew 4.4.26
|
||||
- NPM 10.8.2
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 25.0.1 (python 3.13)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.6.7
|
||||
- Vcpkg 2025 (build from commit 856505bb76)
|
||||
- RubyGems 3.6.6
|
||||
- Vcpkg 2025 (build from commit acd5bba5aa)
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
@@ -54,7 +54,7 @@
|
||||
- bazel 8.1.1
|
||||
- bazelisk 1.25.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.13.0
|
||||
- Curl 8.12.1
|
||||
- Git 2.49.0
|
||||
- Git LFS 3.6.1
|
||||
- GitHub CLI 2.69.0
|
||||
@@ -71,14 +71,14 @@
|
||||
- Ninja 1.12.1
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.25.11
|
||||
- AWS CLI 2.25.6
|
||||
- AWS SAM CLI 1.136.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.71.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- Bicep CLI 0.34.44
|
||||
- Cmake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.7
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Fastlane 2.227.0
|
||||
- SwiftFormat 0.55.5
|
||||
- Xcbeautify 2.28.0
|
||||
@@ -86,17 +86,17 @@
|
||||
- Xcodes 1.6.0
|
||||
|
||||
### Linters
|
||||
- SwiftLint 0.59.0
|
||||
- SwiftLint 0.58.2
|
||||
|
||||
### Browsers
|
||||
- Safari 18.4 (18621.1.15.111.1)
|
||||
- SafariDriver 18.4 (18621.1.15.111.1)
|
||||
- Google Chrome 135.0.7049.42
|
||||
- Google Chrome for Testing 135.0.7049.42
|
||||
- ChromeDriver 135.0.7049.42
|
||||
- Microsoft Edge 135.0.3179.54
|
||||
- Microsoft Edge WebDriver 135.0.3179.54
|
||||
- Mozilla Firefox 137.0
|
||||
- Safari 18.3.1 (18620.2.4.111.9)
|
||||
- SafariDriver 18.3.1 (18620.2.4.111.9)
|
||||
- Google Chrome 134.0.6998.166
|
||||
- Google Chrome for Testing 134.0.6998.165
|
||||
- ChromeDriver 134.0.6998.165
|
||||
- Microsoft Edge 134.0.3124.95
|
||||
- Microsoft Edge WebDriver 134.0.3124.95
|
||||
- Mozilla Firefox 136.0.4
|
||||
- geckodriver 0.36.0
|
||||
- Selenium server 4.29.0
|
||||
|
||||
@@ -146,17 +146,17 @@
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.8
|
||||
- 1.24.2
|
||||
- 1.23.7
|
||||
- 1.24.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.86.0
|
||||
- Rust 1.86.0
|
||||
- Rustdoc 1.86.0
|
||||
- Cargo 1.85.1
|
||||
- Rust 1.85.1
|
||||
- Rustdoc 1.85.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.86
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -214,8 +214,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 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 |
|
||||
| Asset Runtime SDK for macOS hosts targeting iOS 16.4 | assetruntime.host.macosx.target.iphoneos16.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 |
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from April, 08](https://github.com/actions/runner-images/issues/11486) |
|
||||
***
|
||||
# macOS 13
|
||||
- OS Version: macOS 13.7.5 (22H527)
|
||||
- OS Version: macOS 13.7.4 (22H420)
|
||||
- Kernel Version: Darwin 22.6.0
|
||||
- Image Version: 20250407.1029
|
||||
- Image Version: 20250331.995
|
||||
|
||||
## Installed Software
|
||||
|
||||
@@ -28,15 +28,15 @@
|
||||
- Ruby 3.3.7
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.6.7
|
||||
- Bundler 2.6.6
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Homebrew 4.4.27
|
||||
- Homebrew 4.4.26
|
||||
- NPM 10.8.2
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 25.0 (python 3.13)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.6.7
|
||||
- RubyGems 3.6.6
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
@@ -68,14 +68,14 @@
|
||||
- Ninja 1.12.1
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.25.11
|
||||
- AWS CLI 2.25.6
|
||||
- AWS SAM CLI 1.136.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.71.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- Bicep CLI 0.34.44
|
||||
- Cmake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.7
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Fastlane 2.227.0
|
||||
- SwiftFormat 0.55.5
|
||||
- Xcbeautify 2.28.0
|
||||
@@ -85,11 +85,11 @@
|
||||
### Linters
|
||||
|
||||
### Browsers
|
||||
- Safari 18.4 (18621.1.15.111.1)
|
||||
- SafariDriver 18.4 (18621.1.15.111.1)
|
||||
- Google Chrome 135.0.7049.42
|
||||
- Google Chrome for Testing 135.0.7049.42
|
||||
- ChromeDriver 135.0.7049.42
|
||||
- Safari 18.3.1 (18620.2.4.111.9)
|
||||
- SafariDriver 18.3.1 (18620.2.4.111.9)
|
||||
- Google Chrome 134.0.6998.166
|
||||
- Google Chrome for Testing 134.0.6998.165
|
||||
- ChromeDriver 134.0.6998.165
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
@@ -127,17 +127,17 @@
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.8
|
||||
- 1.24.2
|
||||
- 1.23.7
|
||||
- 1.24.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.86.0
|
||||
- Rust 1.86.0
|
||||
- Rustdoc 1.86.0
|
||||
- Cargo 1.85.1
|
||||
- Rust 1.85.1
|
||||
- Rustdoc 1.85.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.86
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[macOS 14] Xcode Command Line Tool version will be downgraded to 15.3.0 on macOS14 images](https://github.com/actions/runner-images/issues/11969) |
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from April, 10](https://github.com/actions/runner-images/issues/11486) |
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from April, 08](https://github.com/actions/runner-images/issues/11486) |
|
||||
***
|
||||
# macOS 15
|
||||
- OS Version: macOS 15.4 (24E248)
|
||||
- Kernel Version: Darwin 24.4.0
|
||||
- Image Version: 20250408.1132
|
||||
- OS Version: macOS 15.3.2 (24D81)
|
||||
- Kernel Version: Darwin 24.3.0
|
||||
- Image Version: 20250331.1080
|
||||
|
||||
## Installed Software
|
||||
|
||||
@@ -29,15 +28,15 @@
|
||||
- Ruby 3.3.7
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.6.7
|
||||
- Bundler 2.6.6
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Composer 2.8.8
|
||||
- Homebrew 4.4.29
|
||||
- Composer 2.8.6
|
||||
- Homebrew 4.4.26
|
||||
- NPM 10.9.2
|
||||
- Pip3 25.0.1 (python 3.13)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.6.7
|
||||
- RubyGems 3.6.6
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
@@ -52,7 +51,7 @@
|
||||
- bazel 8.1.1
|
||||
- bazelisk 1.25.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.13.0
|
||||
- Curl 8.12.1
|
||||
- Git 2.49.0
|
||||
- Git LFS 3.6.1
|
||||
- GitHub CLI 2.69.0
|
||||
@@ -69,32 +68,32 @@
|
||||
- Ninja 1.12.1
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.25.12
|
||||
- AWS CLI 2.25.6
|
||||
- AWS SAM CLI 1.136.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.71.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- Bicep CLI 0.34.44
|
||||
- Cmake 3.31.6
|
||||
- CodeQL Action Bundle 2.21.0
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Fastlane 2.227.0
|
||||
- SwiftFormat 0.55.5
|
||||
- Xcbeautify 2.28.0
|
||||
- Xcode Command Line Tools 16.3.0.0.1.1742442376
|
||||
- Xcode Command Line Tools 16.2.0.0.1.1733547573
|
||||
- Xcodes 1.6.0
|
||||
|
||||
### Linters
|
||||
- SwiftLint 0.59.0
|
||||
- SwiftLint 0.58.2
|
||||
|
||||
### Browsers
|
||||
- Safari 18.4 (20621.1.15.11.10)
|
||||
- SafariDriver 18.4 (20621.1.15.11.10)
|
||||
- Google Chrome 135.0.7049.42
|
||||
- Google Chrome for Testing 135.0.7049.42
|
||||
- ChromeDriver 135.0.7049.42
|
||||
- Microsoft Edge 135.0.3179.54
|
||||
- Microsoft Edge WebDriver 135.0.3179.54
|
||||
- Mozilla Firefox 137.0
|
||||
- Safari 18.3.1 (20620.2.4.11.6)
|
||||
- SafariDriver 18.3.1 (20620.2.4.11.6)
|
||||
- Google Chrome 134.0.6998.166
|
||||
- Google Chrome for Testing 134.0.6998.165
|
||||
- ChromeDriver 134.0.6998.165
|
||||
- Microsoft Edge 134.0.3124.95
|
||||
- Microsoft Edge WebDriver 134.0.3124.95
|
||||
- Mozilla Firefox 136.0.4
|
||||
- geckodriver 0.36.0
|
||||
- Selenium server 4.29.0
|
||||
|
||||
@@ -135,17 +134,17 @@
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.8
|
||||
- 1.24.2
|
||||
- 1.23.7
|
||||
- 1.24.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.86.0
|
||||
- Rust 1.86.0
|
||||
- Rustdoc 1.86.0
|
||||
- Cargo 1.85.1
|
||||
- Rust 1.85.1
|
||||
- Rustdoc 1.85.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.86
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -157,13 +156,13 @@
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
|
||||
### Xcode
|
||||
| Version | Build | Path | Symlinks |
|
||||
| -------------- | -------- | ---------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
| 16.3 | 16E140 | /Applications/Xcode_16.3.app | /Applications/Xcode_16.3.0.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 |
|
||||
| Version | Build | Path | Symlinks |
|
||||
| -------------- | -------- | ------------------------------------------------ | ----------------------------------------------------------------------------------------- |
|
||||
| 16.3 | 16E140 | /Applications/Xcode_16.3_Release_Candidate_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 |
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[macOS 14] Xcode Command Line Tool version will be downgraded to 15.3.0 on macOS14 images](https://github.com/actions/runner-images/issues/11969) |
|
||||
| [macOS 15 (Sequoia) will be generally available in GitHub Actions and Azure DevOps from April, 10](https://github.com/actions/runner-images/issues/11486) |
|
||||
***
|
||||
# macOS 15
|
||||
- OS Version: macOS 15.4 (24E248)
|
||||
- Kernel Version: Darwin 24.4.0
|
||||
- Image Version: 20250416.1273
|
||||
- Image Version: 20250408.1231
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.408, 9.0.102, 9.0.203
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.407, 9.0.102, 9.0.202
|
||||
- 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`
|
||||
@@ -22,20 +23,19 @@
|
||||
- GNU Fortran 14 (Homebrew GCC 14.2.0_1) - available by `gfortran-14` alias
|
||||
- Kotlin 2.1.10-release-473
|
||||
- Node.js 22.14.0
|
||||
- Perl 5.40.2
|
||||
- Python3 3.13.3
|
||||
- Ruby 3.3.8
|
||||
- Perl 5.40.1
|
||||
- Python3 3.13.2
|
||||
- Ruby 3.3.7
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.6.8
|
||||
- Bundler 2.6.7
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Homebrew 4.4.31
|
||||
- Homebrew 4.4.29
|
||||
- NPM 10.9.2
|
||||
- Pip3 25.0.1 (python 3.13)
|
||||
- Pip3 25.0 (python 3.13)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.6.8
|
||||
- Vcpkg 2025 (build from commit 711466ff1c)
|
||||
- RubyGems 3.6.7
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
@@ -47,13 +47,13 @@
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.28.1
|
||||
- bazel 8.2.0
|
||||
- bazelisk 1.26.0
|
||||
- bazel 8.1.1
|
||||
- bazelisk 1.25.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.7.1
|
||||
- Git 2.49.0
|
||||
- Git LFS 3.6.1
|
||||
- GitHub CLI 2.70.0
|
||||
- GitHub CLI 2.69.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.7
|
||||
@@ -67,15 +67,15 @@
|
||||
- Ninja 1.12.1
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.26.2
|
||||
- AWS SAM CLI 1.137.1
|
||||
- AWS CLI 2.25.12
|
||||
- AWS SAM CLI 1.136.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.71.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- Bicep CLI 0.34.44
|
||||
- Cmake 3.31.6
|
||||
- CodeQL Action Bundle 2.21.0
|
||||
- Fastlane 2.227.1
|
||||
- Fastlane 2.227.0
|
||||
- SwiftFormat 0.55.5
|
||||
- Xcbeautify 2.28.0
|
||||
- Xcode Command Line Tools 16.3.0.0.1.1742442376
|
||||
@@ -86,9 +86,9 @@
|
||||
### Browsers
|
||||
- Safari 18.4 (20621.1.15.11.10)
|
||||
- SafariDriver 18.4 (20621.1.15.11.10)
|
||||
- Google Chrome 135.0.7049.96
|
||||
- Google Chrome for Testing 135.0.7049.95
|
||||
- ChromeDriver 135.0.7049.95
|
||||
- Google Chrome 135.0.7049.42
|
||||
- Google Chrome for Testing 135.0.7049.42
|
||||
- ChromeDriver 135.0.7049.42
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
@@ -110,13 +110,13 @@
|
||||
#### Ruby
|
||||
- 3.1.7
|
||||
- 3.2.8
|
||||
- 3.3.8
|
||||
- 3.4.3
|
||||
- 3.3.7
|
||||
- 3.4.2
|
||||
|
||||
#### Python
|
||||
- 3.11.9
|
||||
- 3.12.10
|
||||
- 3.13.3
|
||||
- 3.12.9
|
||||
- 3.13.2
|
||||
|
||||
#### Node.js
|
||||
- 18.20.8
|
||||
|
||||
@@ -18,7 +18,7 @@ chmod +x /usr/local/bin/change_hostname.sh
|
||||
|
||||
sudo tee -a /Library/LaunchDaemons/change_hostname.plist > /dev/null <<\EOF
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Label</key>
|
||||
|
||||
@@ -6,31 +6,31 @@
|
||||
|
||||
source ~/utils/utils.sh
|
||||
|
||||
echo "Set solid color wallpaper"
|
||||
# Set solid color wallpaper
|
||||
osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/System/Library/Desktop Pictures/Solid Colors/Black.png"'
|
||||
|
||||
echo "Close all finder windows because they can interfere with UI tests"
|
||||
# Close all finder windows because they can interfere with UI tests
|
||||
close_finder_window
|
||||
|
||||
echo "Disable Handoff and Continuity"
|
||||
# Disable Handoff and Continuity
|
||||
defaults write com.apple.coreservices.useractivityd ActivityReceivingEnabled -bool false
|
||||
defaults write com.apple.coreservices.useractivityd ActivityAdvertisingAllowed -bool false
|
||||
|
||||
echo "Disable graphic effects in System"
|
||||
# Disable graphic effects in System
|
||||
defaults write com.apple.universalaccess reduceMotion -bool true
|
||||
defaults write com.apple.universalaccess reduceTransparency -bool true
|
||||
|
||||
echo "Disable analytics daemon (requires SIP to be disabled)"
|
||||
# Disable analytics daemon (requires SIP to be disabled)
|
||||
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.SubmitDiagInfo.plist
|
||||
|
||||
echo "Disable notification center agent"
|
||||
# Disable notification center agent
|
||||
launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist
|
||||
|
||||
echo "Disable Time Machine and it's daemon"
|
||||
# Disable Time Machine and it's daemon
|
||||
sudo tmutil disable
|
||||
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.backupd.plist
|
||||
|
||||
echo "Disable Apple Push Notification Service daemon"
|
||||
# Disable Apple Push Notification Service daemon
|
||||
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.apsd.plist
|
||||
|
||||
# Remove Parallels Desktop
|
||||
@@ -40,66 +40,32 @@ if is_SonomaX64 || is_VenturaX64 || is_SequoiaX64; then
|
||||
brew uninstall parallels
|
||||
fi
|
||||
|
||||
echo "Put documentation to $HOME root"
|
||||
# Put documentation to $HOME root
|
||||
cp $HOME/image-generation/output/software-report/systeminfo.* $HOME/
|
||||
|
||||
echo "Remove fastlane cached cookie"
|
||||
# Remove fastlane cached cookie
|
||||
rm -rf ~/.fastlane
|
||||
|
||||
# Clean up npm cache which collected during image-generation
|
||||
# we have to do that here because `npm install` is run in a few different places during image-generation
|
||||
echo "Clean up npm cache"
|
||||
npm cache clean --force
|
||||
|
||||
# Clean yarn cache
|
||||
yarn cache clean
|
||||
|
||||
echo "Clean up temporary directories"
|
||||
# Clean up temporary directories
|
||||
sudo rm -rf ~/utils /tmp/*
|
||||
|
||||
# Erase all indexes and wait until the rebuilding process ends,
|
||||
# for now there is no clear way to get status of indexing process on macOS, it takes around 3-6 minutes to accomplish
|
||||
echo "Erase all MDS indexes and wait until the rebuilding process ends"
|
||||
sudo mdutil -E / > /dev/null
|
||||
# for now there is no way to get status of indexing process, it takes around 5 minutes to accomplish
|
||||
sudo mdutil -E /
|
||||
sudo log stream | grep -q -E 'mds.*Released.*BackgroundTask' || true
|
||||
echo "Indexing completed"
|
||||
|
||||
echo "Wait for 6 minutes or until the indexing process end signal is found in logs"
|
||||
for _ in {1..12}; do
|
||||
sleep 30
|
||||
result=$(sudo log show --last 1m | grep -E 'mds.*Released.*BackgroundTask' || true)
|
||||
if [[ -n "$result" ]]; then
|
||||
echo "Sign of indexing completion found:"
|
||||
echo "$result"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
echo "Check if the indexing process or other CPU intensive process (5% and more) is still running"
|
||||
|
||||
cool=0
|
||||
while true; do
|
||||
usage=$(top -l 2 | grep "CPU usage" | awk '{print int($3)}' | tr -d '%' | tail -n 1)
|
||||
echo "Current CPU usage: ${usage}%"
|
||||
if [ $usage -lt 5 ]; then
|
||||
cool=$((cool + 1))
|
||||
else
|
||||
ps -arcwwwxo ppid,pid,%cpu,%mem,time,command | head -n 2 || true
|
||||
cool=0
|
||||
fi
|
||||
|
||||
echo "Feeling cool for $cool intervals"
|
||||
|
||||
if [ $cool -gt 5 ]; then
|
||||
echo "Cooled down, exiting..."
|
||||
break
|
||||
fi
|
||||
|
||||
sleep 1
|
||||
done
|
||||
|
||||
echo "Delete symlink for tests running"
|
||||
# delete symlink for tests running
|
||||
sudo rm -f /usr/local/bin/invoke_tests
|
||||
|
||||
echo "Clean Homebrew downloads"
|
||||
# Clean Homebrew downloads
|
||||
sudo rm -rf /Users/$USER/Library/Caches/Homebrew/downloads/*
|
||||
|
||||
# Uninstall expect used in configure-machine.sh
|
||||
|
||||
@@ -42,7 +42,7 @@ sudo mkdir "/Library/Managed Preferences"
|
||||
|
||||
cat <<EOF | sudo tee "/Library/Managed Preferences/com.microsoft.EdgeUpdater.plist" > /dev/null
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>updatePolicies</key>
|
||||
|
||||
@@ -16,10 +16,10 @@ mkdir -p /Users/runner/.vcpkg
|
||||
touch /Users/runner/.vcpkg/vcpkg.path.txt
|
||||
|
||||
# Install vcpkg
|
||||
sudo git clone https://github.com/Microsoft/vcpkg $VCPKG_INSTALLATION_ROOT
|
||||
sudo $VCPKG_INSTALLATION_ROOT/bootstrap-vcpkg.sh
|
||||
git clone https://github.com/Microsoft/vcpkg $VCPKG_INSTALLATION_ROOT
|
||||
$VCPKG_INSTALLATION_ROOT/bootstrap-vcpkg.sh
|
||||
$VCPKG_INSTALLATION_ROOT/vcpkg integrate install
|
||||
sudo chmod -R 0777 $VCPKG_INSTALLATION_ROOT
|
||||
chmod -R 0777 $VCPKG_INSTALLATION_ROOT
|
||||
ln -sf $VCPKG_INSTALLATION_ROOT/vcpkg /usr/local/bin
|
||||
|
||||
rm -rf /Users/runner/.vcpkg
|
||||
|
||||
@@ -64,7 +64,7 @@ if ((-not $os.IsSequoia)) {
|
||||
$packageManagement.AddToolVersion("Pip3", $(Get-Pip3Version))
|
||||
$packageManagement.AddToolVersion("Pipx", $(Get-PipxVersion))
|
||||
$packageManagement.AddToolVersion("RubyGems", $(Get-RubyGemsVersion))
|
||||
if (-not $os.IsVenturaArm64) {
|
||||
if ((-not $os.IsVenturaArm64) -and (-not $os.IsSonoma) -and (-not $os.IsSequoia)) {
|
||||
$packageManagement.AddToolVersion("Vcpkg", $(Get-VcpkgVersion))
|
||||
}
|
||||
$packageManagement.AddToolVersion("Yarn", $(Get-YarnVersion))
|
||||
|
||||
@@ -33,7 +33,7 @@ Describe "GCC" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "vcpkg" -Skip:($os.IsVenturaArm64) {
|
||||
Describe "vcpkg" -Skip:($os.IsVenturaArm64 -or $os.IsSonoma -or $os.IsSequoia) {
|
||||
It "vcpkg" {
|
||||
"vcpkg version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
@@ -245,7 +245,6 @@ build {
|
||||
"${path.root}/../scripts/build/install-gcc.sh",
|
||||
"${path.root}/../scripts/build/install-cocoapods.sh",
|
||||
"${path.root}/../scripts/build/install-android-sdk.sh",
|
||||
"${path.root}/../scripts/build/install-vcpkg.sh",
|
||||
"${path.root}/../scripts/build/install-safari.sh",
|
||||
"${path.root}/../scripts/build/install-chrome.sh",
|
||||
"${path.root}/../scripts/build/install-edge.sh",
|
||||
|
||||
@@ -244,7 +244,6 @@ build {
|
||||
"${path.root}/../scripts/build/install-gcc.sh",
|
||||
"${path.root}/../scripts/build/install-cocoapods.sh",
|
||||
"${path.root}/../scripts/build/install-android-sdk.sh",
|
||||
"${path.root}/../scripts/build/install-vcpkg.sh",
|
||||
"${path.root}/../scripts/build/install-safari.sh",
|
||||
"${path.root}/../scripts/build/install-chrome.sh",
|
||||
"${path.root}/../scripts/build/install-bicep.sh",
|
||||
|
||||
@@ -244,7 +244,6 @@ build {
|
||||
"${path.root}/../scripts/build/install-gcc.sh",
|
||||
"${path.root}/../scripts/build/install-cocoapods.sh",
|
||||
"${path.root}/../scripts/build/install-android-sdk.sh",
|
||||
"${path.root}/../scripts/build/install-vcpkg.sh",
|
||||
"${path.root}/../scripts/build/install-safari.sh",
|
||||
"${path.root}/../scripts/build/install-chrome.sh",
|
||||
"${path.root}/../scripts/build/install-edge.sh",
|
||||
|
||||
@@ -243,7 +243,6 @@ build {
|
||||
"${path.root}/../scripts/build/install-gcc.sh",
|
||||
"${path.root}/../scripts/build/install-cocoapods.sh",
|
||||
"${path.root}/../scripts/build/install-android-sdk.sh",
|
||||
"${path.root}/../scripts/build/install-vcpkg.sh",
|
||||
"${path.root}/../scripts/build/install-safari.sh",
|
||||
"${path.root}/../scripts/build/install-chrome.sh",
|
||||
"${path.root}/../scripts/build/install-bicep.sh",
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Ubuntu-24] Clang version 19 will be added, and the default Clang will be set to 19 from 2025-05-09.](https://github.com/actions/runner-images/issues/11895) |
|
||||
| [[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 20.04
|
||||
- OS Version: 20.04.6 LTS
|
||||
- Kernel Version: 5.15.0-1086-azure
|
||||
- Image Version: 20250406.1.0
|
||||
- Kernel Version: 5.15.0-1082-azure
|
||||
- Image Version: 20250316.1.0
|
||||
- Systemd version: 245.4-4ubuntu3.24
|
||||
|
||||
## Installed Software
|
||||
@@ -25,16 +25,16 @@
|
||||
- Kotlin 2.1.10-release-473
|
||||
- Mono 6.12.0.200
|
||||
- MSBuild 16.10.1.31701 (Mono 6.12.0.200)
|
||||
- Node.js 18.20.8
|
||||
- Node.js 18.20.7
|
||||
- Perl 5.30.0
|
||||
- Python 3.8.10
|
||||
- Ruby 2.7.0p0
|
||||
- Swift 6.1
|
||||
- Swift 6.0.3
|
||||
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.17.2
|
||||
- Homebrew 4.4.27
|
||||
- Homebrew 4.4.24
|
||||
- Miniconda 25.1.1
|
||||
- Npm 10.8.2
|
||||
- NuGet 6.6.1.2
|
||||
@@ -42,7 +42,7 @@
|
||||
- Pip3 20.0.2
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.1.2
|
||||
- Vcpkg (build from commit 856505bb76)
|
||||
- Vcpkg (build from commit 782ccc18d8)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -64,29 +64,29 @@ to accomplish this.
|
||||
- Gradle 8.13
|
||||
- Lerna 8.2.1
|
||||
- Maven 3.9.9
|
||||
- Sbt 1.10.11
|
||||
- Sbt 1.10.10
|
||||
|
||||
### Tools
|
||||
- Ansible 2.13.13
|
||||
- apt-fast 1.10.0
|
||||
- AzCopy 10.28.1 - available by `azcopy` and `azcopy10` aliases
|
||||
- AzCopy 10.28.0 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.34.44
|
||||
- Bicep 0.33.93
|
||||
- Buildah 1.22.3
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.7
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker Amazon ECR Credential Helper 0.9.1
|
||||
- Docker Compose v2 2.27.1
|
||||
- Docker-Buildx 0.22.0
|
||||
- Docker-Buildx 0.21.2
|
||||
- Docker Client 26.1.3
|
||||
- Docker Server 26.1.3
|
||||
- Fastlane 2.227.0
|
||||
- Git 2.49.0
|
||||
- Git 2.48.1
|
||||
- Git LFS 3.6.1
|
||||
- Git-ftp 1.6.0
|
||||
- Haveged 1.9.1
|
||||
- Heroku 10.4.1
|
||||
- Heroku 10.3.0
|
||||
- HHVM (HipHop VM) 4.172.1
|
||||
- jq 1.6
|
||||
- Kind 0.27.0
|
||||
@@ -101,15 +101,15 @@ to accomplish this.
|
||||
- nvm 0.40.2
|
||||
- OpenSSL 1.1.1f-1ubuntu2.24
|
||||
- Packer 1.12.0
|
||||
- Parcel 2.14.4
|
||||
- Parcel 2.13.3
|
||||
- PhantomJS 2.1.1 2.1.1
|
||||
- Podman 3.4.2
|
||||
- Pulumi 3.160.0
|
||||
- Pulumi 3.156.0
|
||||
- R 4.4.3
|
||||
- Skopeo 1.5.0
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- SVN 1.13.0
|
||||
- Terraform 1.11.3
|
||||
- Terraform 1.11.2
|
||||
- yamllint 1.35.1
|
||||
- yq 4.45.1
|
||||
- zstd 1.5.7
|
||||
@@ -117,14 +117,14 @@ to accomplish this.
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.174
|
||||
- AWS CLI 2.25.11
|
||||
- AWS CLI 2.24.24
|
||||
- AWS CLI Session Manager Plugin 1.2.707.0
|
||||
- AWS SAM CLI 1.136.0
|
||||
- Azure CLI 2.71.0
|
||||
- AWS SAM CLI 1.135.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- GitHub CLI 2.69.0
|
||||
- Google Cloud CLI 517.0.0
|
||||
- Netlify CLI 19.1.5
|
||||
- GitHub CLI 2.68.1
|
||||
- Google Cloud CLI 514.0.0
|
||||
- Netlify CLI 19.0.2
|
||||
- OpenShift CLI 4.15.19
|
||||
- ORAS CLI 1.2.2
|
||||
- Vercel CLI 41.4.1
|
||||
@@ -139,7 +139,7 @@ to accomplish this.
|
||||
|
||||
### PHP Tools
|
||||
- PHP: 7.4.33, 8.0.30, 8.1.32, 8.2.28, 8.3.19
|
||||
- Composer 2.8.8
|
||||
- Composer 2.8.6
|
||||
- PHPUnit 8.5.41
|
||||
```
|
||||
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
@@ -148,31 +148,31 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
### Haskell Tools
|
||||
- Cabal 3.14.1.1
|
||||
- GHC 9.12.2
|
||||
- GHCup 0.1.50.1
|
||||
- Stack 3.5.1
|
||||
- GHCup 0.1.40.0
|
||||
- Stack 3.3.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.86.0
|
||||
- Rust 1.86.0
|
||||
- Rustdoc 1.86.0
|
||||
- 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.2
|
||||
- Cargo clippy 0.1.86
|
||||
- Cargo clippy 0.1.85
|
||||
- Cargo outdated 0.17.0
|
||||
- Cbindgen 0.28.0
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 135.0.7049.52
|
||||
- ChromeDriver 135.0.7049.42
|
||||
- Chromium 135.0.7049.0
|
||||
- Microsoft Edge 135.0.3179.54
|
||||
- Microsoft Edge WebDriver 135.0.3179.54
|
||||
- Selenium server 4.31.0
|
||||
- Mozilla Firefox 136.0.4
|
||||
- Google Chrome 134.0.6998.88
|
||||
- ChromeDriver 134.0.6998.88
|
||||
- Chromium 134.0.6998.0
|
||||
- Microsoft Edge 134.0.3124.68
|
||||
- Microsoft Edge WebDriver 134.0.3124.68
|
||||
- Selenium server 4.29.0
|
||||
- Mozilla Firefox 136.0.1
|
||||
- Geckodriver 0.36.0
|
||||
|
||||
#### Environment variables
|
||||
@@ -184,7 +184,7 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
| SELENIUM_JAR_PATH | /usr/share/java/selenium-server.jar |
|
||||
|
||||
### .NET Tools
|
||||
- .NET Core SDK: 6.0.428, 8.0.407, 9.0.202
|
||||
- .NET Core SDK: 6.0.428, 8.0.407, 9.0.201
|
||||
- nbgv 3.7.115+d31f50f4d1
|
||||
|
||||
### Databases
|
||||
@@ -217,10 +217,10 @@ 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.8
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 18.20.8
|
||||
- 18.20.7
|
||||
- 20.19.0
|
||||
- 22.14.0
|
||||
|
||||
@@ -242,8 +242,8 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.7
|
||||
- 3.2.8
|
||||
- 3.1.6
|
||||
- 3.2.7
|
||||
- 3.3.7
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -254,7 +254,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.26.1
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
- PSScriptAnalyzer: 1.23.0
|
||||
|
||||
### Web Servers
|
||||
| Name | Version | ConfigFile | ServiceStatus | ListenPort |
|
||||
@@ -264,17 +264,17 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| nginx | 1.18.0 | /etc/nginx/nginx.conf | inactive | 80 |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 9.0 |
|
||||
| Android SDK Build-tools | 36.0.0<br>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 Platform-Tools | 35.0.2 |
|
||||
| Android SDK Platforms | android-36 (rev 1)<br>android-35-ext15 (rev 1)<br>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 Support Repository | 47.0.0 |
|
||||
| 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 (default) |
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 9.0 |
|
||||
| Android SDK Build-tools | 36.0.0<br>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 Platform-Tools | 35.0.2 |
|
||||
| Android SDK Platforms | android-36 (rev 1)<br>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 Support Repository | 47.0.0 |
|
||||
| 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 (default) |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -294,14 +294,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:5c028c19adaab78491711830600749729a8276b9839416716d5d7339ec3d7216 | 2025-03-17 |
|
||||
| debian:11 | sha256:a6cec654bb08bdc6a563cd7507b62f57c916290e195142e79a0d41a70ebb26fa | 2025-02-24 |
|
||||
| debian:9 | sha256:c5c5200ff1e9c73ffbf188b4a67eb1c91531b644856b4aefe86a58d2f0cb05be | 2022-06-23 |
|
||||
| moby/buildkit:latest | sha256:c457984bd29f04d6acc90c8d9e717afe3922ae14665f3187e0096976fe37b1c8 | 2025-03-24 |
|
||||
| node:18 | sha256:3c56248510700ddb4861bd478ea2ced828793fd5388a21adc5270cdbbf7b7919 | 2025-03-27 |
|
||||
| node:18-alpine | sha256:8d6421d663b4c28fd3ebc498332f249011d118945588d0a35cb9bc4b8ca09d9e | 2025-03-27 |
|
||||
| node:20 | sha256:735b1ba7e4550c415f98568efbf527e3f75828ac4f10692e490ca78e11d89f6e | 2025-03-13 |
|
||||
| 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:a2cc2512d230a0b40f0445086f82c0e720edf34ff6520221b2c649c1f2268d0e | 2025-03-13 |
|
||||
| node:20-alpine | sha256:8bda036ddd59ea51a23bc1a1035d3b5c614e72c01366d989f4120e8adca196d4 | 2025-03-13 |
|
||||
| node:22 | sha256:c7fd844945a76eeaa83cb372e4d289b4a30b478a1c80e16c685b62c54156285b | 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 |
|
||||
|
||||
@@ -330,7 +330,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| ftp | 0.17-34.1 |
|
||||
| g++ | 4:9.3.0-1ubuntu2 |
|
||||
| gcc | 4:9.3.0-1ubuntu2 |
|
||||
| gnupg2 | 2.2.19-3ubuntu2.4 |
|
||||
| gnupg2 | 2.2.19-3ubuntu2.2 |
|
||||
| haveged | 1.9.1-6ubuntu1 |
|
||||
| imagemagick | 8:6.9.10.23+dfsg-2.1ubuntu11.10 |
|
||||
| iproute2 | 5.5.0-1ubuntu1 |
|
||||
@@ -388,12 +388,12 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| texinfo | 6.7.0.dfsg.2-5 |
|
||||
| time | 1.7-25.1build1 |
|
||||
| tk | 8.6.9+1 |
|
||||
| tzdata | 2025b-0ubuntu0.20.04 |
|
||||
| tzdata | 2024b-0ubuntu0.20.04.1 |
|
||||
| unzip | 6.0-25ubuntu1.2 |
|
||||
| upx | 3.95-2build1 |
|
||||
| wget | 1.20.3-1ubuntu2.1 |
|
||||
| xorriso | 1.5.2-1 |
|
||||
| xvfb | 2:1.20.13-1ubuntu1\~20.04.20 |
|
||||
| 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,13 +1,12 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Ubuntu-24] Clang version 19 will be added, and the default Clang will be set to 19 from 2025-05-09.](https://github.com/actions/runner-images/issues/11895) |
|
||||
| [[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 22.04
|
||||
- OS Version: 22.04.5 LTS
|
||||
- Kernel Version: 6.8.0-1025-azure
|
||||
- Image Version: 20250406.1.0
|
||||
- Systemd version: 249.11-0ubuntu3.15
|
||||
- Kernel Version: 6.8.0-1021-azure
|
||||
- Image Version: 20250323.1.0
|
||||
- Systemd version: 249.11-0ubuntu3.12
|
||||
|
||||
## Installed Software
|
||||
|
||||
@@ -23,16 +22,16 @@
|
||||
- Kotlin 2.1.10-release-473
|
||||
- Mono 6.12.0.200
|
||||
- MSBuild 16.10.1.31701 (Mono 6.12.0.200)
|
||||
- Node.js 18.20.8
|
||||
- Node.js 18.20.7
|
||||
- Perl 5.34.0
|
||||
- Python 3.10.12
|
||||
- Ruby 3.0.2p107
|
||||
- Swift 6.1
|
||||
- Swift 6.0.3
|
||||
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.17.2
|
||||
- Homebrew 4.4.27
|
||||
- Homebrew 4.4.25
|
||||
- Miniconda 25.1.1
|
||||
- Npm 10.8.2
|
||||
- NuGet 6.6.1.2
|
||||
@@ -40,7 +39,7 @@
|
||||
- Pip3 22.0.2
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.3.5
|
||||
- Vcpkg (build from commit 856505bb76)
|
||||
- Vcpkg (build from commit a76b33254a)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -65,15 +64,15 @@ to accomplish this.
|
||||
- Sbt 1.10.11
|
||||
|
||||
### Tools
|
||||
- Ansible 2.17.10
|
||||
- Ansible 2.17.9
|
||||
- apt-fast 1.10.0
|
||||
- AzCopy 10.28.1 - available by `azcopy` and `azcopy10` aliases
|
||||
- AzCopy 10.28.0 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.34.44
|
||||
- Bicep 0.34.1
|
||||
- Buildah 1.23.1
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.7
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker Amazon ECR Credential Helper 0.9.1
|
||||
- Docker Compose v2 2.27.1
|
||||
- Docker-Buildx 0.22.0
|
||||
@@ -84,7 +83,7 @@ to accomplish this.
|
||||
- Git LFS 3.6.1
|
||||
- Git-ftp 1.6.0
|
||||
- Haveged 1.9.14
|
||||
- Heroku 10.4.1
|
||||
- Heroku 10.4.0
|
||||
- jq 1.6
|
||||
- Kind 0.27.0
|
||||
- Kubectl 1.32.3
|
||||
@@ -98,30 +97,30 @@ to accomplish this.
|
||||
- nvm 0.40.2
|
||||
- OpenSSL 3.0.2-0ubuntu1.19
|
||||
- Packer 1.12.0
|
||||
- Parcel 2.14.4
|
||||
- Parcel 2.14.1
|
||||
- Podman 3.4.4
|
||||
- Pulumi 3.160.0
|
||||
- Pulumi 3.157.0
|
||||
- R 4.4.3
|
||||
- Skopeo 1.4.1
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- SVN 1.14.1
|
||||
- Terraform 1.11.3
|
||||
- Terraform 1.11.2
|
||||
- yamllint 1.37.0
|
||||
- yq 4.45.1
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.12.1
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.265
|
||||
- AWS CLI 2.25.11
|
||||
- Alibaba Cloud CLI 3.0.260
|
||||
- AWS CLI 2.25.1
|
||||
- AWS CLI Session Manager Plugin 1.2.707.0
|
||||
- AWS SAM CLI 1.136.0
|
||||
- Azure CLI 2.71.0
|
||||
- AWS SAM CLI 1.135.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- GitHub CLI 2.69.0
|
||||
- Google Cloud CLI 517.0.0
|
||||
- Netlify CLI 19.1.5
|
||||
- OpenShift CLI 4.18.7
|
||||
- Google Cloud CLI 515.0.0
|
||||
- Netlify CLI 19.0.3
|
||||
- OpenShift CLI 4.18.5
|
||||
- ORAS CLI 1.2.2
|
||||
- Vercel CLI 41.4.1
|
||||
|
||||
@@ -135,7 +134,7 @@ to accomplish this.
|
||||
|
||||
### PHP Tools
|
||||
- PHP: 8.1.2
|
||||
- Composer 2.8.8
|
||||
- Composer 2.8.6
|
||||
- PHPUnit 8.5.41
|
||||
```
|
||||
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
@@ -144,31 +143,31 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
### Haskell Tools
|
||||
- Cabal 3.14.1.1
|
||||
- GHC 9.12.2
|
||||
- GHCup 0.1.50.1
|
||||
- Stack 3.5.1
|
||||
- GHCup 0.1.50.0
|
||||
- Stack 3.3.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.86.0
|
||||
- Rust 1.86.0
|
||||
- Rustdoc 1.86.0
|
||||
- Cargo 1.85.1
|
||||
- Rust 1.85.1
|
||||
- Rustdoc 1.85.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Bindgen 0.71.1
|
||||
- Cargo audit 0.21.2
|
||||
- Cargo clippy 0.1.86
|
||||
- Cargo clippy 0.1.85
|
||||
- Cargo outdated 0.17.0
|
||||
- Cbindgen 0.28.0
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 135.0.7049.52
|
||||
- ChromeDriver 135.0.7049.42
|
||||
- Chromium 135.0.7049.0
|
||||
- Microsoft Edge 135.0.3179.54
|
||||
- Microsoft Edge WebDriver 135.0.3179.54
|
||||
- Selenium server 4.31.0
|
||||
- Mozilla Firefox 136.0.4
|
||||
- Google Chrome 134.0.6998.165
|
||||
- ChromeDriver 134.0.6998.165
|
||||
- Chromium 134.0.6998.0
|
||||
- Microsoft Edge 134.0.3124.83
|
||||
- Microsoft Edge WebDriver 134.0.3124.83
|
||||
- Selenium server 4.30.0
|
||||
- Mozilla Firefox 136.0.2
|
||||
- Geckodriver 0.36.0
|
||||
|
||||
#### Environment variables
|
||||
@@ -212,10 +211,10 @@ 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.8
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 18.20.8
|
||||
- 18.20.7
|
||||
- 20.19.0
|
||||
- 22.14.0
|
||||
|
||||
@@ -234,8 +233,8 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
|
||||
#### Ruby
|
||||
- 3.1.7
|
||||
- 3.2.8
|
||||
- 3.1.6
|
||||
- 3.2.7
|
||||
- 3.3.7
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -255,17 +254,17 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| nginx | 1.18.0 | /etc/nginx/nginx.conf | inactive | 80 |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 9.0 |
|
||||
| Android SDK Build-tools | 36.0.0<br>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 Platform-Tools | 35.0.2 |
|
||||
| Android SDK Platforms | android-36 (rev 1)<br>android-35-ext15 (rev 1)<br>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 Support Repository | 47.0.0 |
|
||||
| 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 (default) |
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 9.0 |
|
||||
| Android SDK Build-tools | 36.0.0<br>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 Platform-Tools | 35.0.2 |
|
||||
| Android SDK Platforms | android-36 (rev 1)<br>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 Support Repository | 47.0.0 |
|
||||
| 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 (default) |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -286,9 +285,9 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| alpine:3.19 | sha256:e5d0aea7f7d2954678a9a6269ca2d06e06591881161961ea59e974dff3f12377 | 2025-02-14 |
|
||||
| debian:10 | sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225 | 2024-06-13 |
|
||||
| debian:11 | sha256:5c028c19adaab78491711830600749729a8276b9839416716d5d7339ec3d7216 | 2025-03-17 |
|
||||
| moby/buildkit:latest | sha256:c457984bd29f04d6acc90c8d9e717afe3922ae14665f3187e0096976fe37b1c8 | 2025-03-24 |
|
||||
| node:18 | sha256:3c56248510700ddb4861bd478ea2ced828793fd5388a21adc5270cdbbf7b7919 | 2025-03-27 |
|
||||
| node:18-alpine | sha256:8d6421d663b4c28fd3ebc498332f249011d118945588d0a35cb9bc4b8ca09d9e | 2025-03-27 |
|
||||
| moby/buildkit:latest | sha256:c5137fdd77377ea102a2622714df55459fe42e5867ba180bda07291aa7952d9b | 2025-03-05 |
|
||||
| node:18 | sha256:7f6bcd8e08a1f81bfbb29f5948de5c5507624788ddb50cadb94ddd439426b7c4 | 2025-02-20 |
|
||||
| node:18-alpine | sha256:e0340f26173b41066d68e3fe9bfbdb6571ab3cad0a4272919a52e36f4ae56925 | 2025-02-20 |
|
||||
| node:20 | sha256:735b1ba7e4550c415f98568efbf527e3f75828ac4f10692e490ca78e11d89f6e | 2025-03-13 |
|
||||
| node:20-alpine | sha256:8bda036ddd59ea51a23bc1a1035d3b5c614e72c01366d989f4120e8adca196d4 | 2025-03-13 |
|
||||
| node:22 | sha256:c7fd844945a76eeaa83cb372e4d289b4a30b478a1c80e16c685b62c54156285b | 2025-02-13 |
|
||||
@@ -321,7 +320,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| ftp | 20210827-4build1 |
|
||||
| g++ | 4:11.2.0-1ubuntu1 |
|
||||
| gcc | 4:11.2.0-1ubuntu1 |
|
||||
| gnupg2 | 2.2.27-3ubuntu2.3 |
|
||||
| gnupg2 | 2.2.27-3ubuntu2.1 |
|
||||
| haveged | 1.9.14-1ubuntu1 |
|
||||
| imagemagick | 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5 |
|
||||
| iproute2 | 5.15.0-1ubuntu2 |
|
||||
@@ -375,18 +374,18 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| subversion | 1.14.1-3ubuntu0.22.04.1 |
|
||||
| sudo | 1.9.9-1ubuntu2.4 |
|
||||
| swig | 4.0.2-1ubuntu1 |
|
||||
| systemd-coredump | 249.11-0ubuntu3.15 |
|
||||
| systemd-coredump | 249.11-0ubuntu3.12 |
|
||||
| tar | 1.34+dfsg-1ubuntu0.1.22.04.2 |
|
||||
| telnet | 0.17-44build1 |
|
||||
| texinfo | 6.8-4build1 |
|
||||
| time | 1.9-0.1build2 |
|
||||
| tk | 8.6.11+1build2 |
|
||||
| tzdata | 2025b-0ubuntu0.22.04 |
|
||||
| tzdata | 2024b-0ubuntu0.22.04.1 |
|
||||
| unzip | 6.0-26ubuntu3.2 |
|
||||
| upx | 3.96-3 |
|
||||
| wget | 1.21.2-2ubuntu1.1 |
|
||||
| xorriso | 1.5.4-2 |
|
||||
| xvfb | 2:21.1.4-2ubuntu1.7\~22.04.14 |
|
||||
| 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 |
|
||||
|
||||
+127
-127
@@ -5,7 +5,7 @@
|
||||
# Ubuntu 24.04
|
||||
- OS Version: 24.04.2 LTS
|
||||
- Kernel Version: 6.8.0-1021-azure
|
||||
- Image Version: 20250413.1.0
|
||||
- Image Version: 20250323.1.0
|
||||
- Systemd version: 255.4-1ubuntu8.6
|
||||
|
||||
## Installed Software
|
||||
@@ -24,19 +24,19 @@
|
||||
- Perl 5.38.2
|
||||
- Python 3.12.3
|
||||
- Ruby 3.2.3
|
||||
- Swift 6.1
|
||||
- Swift 6.0.3
|
||||
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.17.3
|
||||
- Homebrew 4.4.29
|
||||
- Helm 3.17.2
|
||||
- Homebrew 4.4.25
|
||||
- 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 bc994510d2)
|
||||
- Vcpkg (build from commit a76b33254a)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -56,24 +56,24 @@ to accomplish this.
|
||||
### Project Management
|
||||
- Ant 1.10.14
|
||||
- Gradle 8.13
|
||||
- Lerna 8.2.2
|
||||
- Lerna 8.2.1
|
||||
- Maven 3.9.9
|
||||
|
||||
### Tools
|
||||
- Ansible 2.18.4
|
||||
- AzCopy 10.28.1 - available by `azcopy` and `azcopy10` aliases
|
||||
- Ansible 2.18.3
|
||||
- AzCopy 10.28.0 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.26.0
|
||||
- Bicep 0.34.44
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.34.1
|
||||
- Buildah 1.33.7
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.21.0
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker Amazon ECR Credential Helper 0.9.1
|
||||
- Docker Compose v2 2.27.1
|
||||
- Docker-Buildx 0.22.0
|
||||
- Docker Client 26.1.3
|
||||
- Docker Server 26.1.3
|
||||
- Fastlane 2.227.1
|
||||
- Fastlane 2.227.0
|
||||
- Git 2.49.0
|
||||
- Git LFS 3.6.1
|
||||
- Git-ftp 1.6.0
|
||||
@@ -90,9 +90,9 @@ to accomplish this.
|
||||
- nvm 0.40.2
|
||||
- OpenSSL 3.0.13-0ubuntu3.5
|
||||
- Packer 1.12.0
|
||||
- Parcel 2.14.4
|
||||
- Parcel 2.14.1
|
||||
- Podman 4.9.3
|
||||
- Pulumi 3.162.0
|
||||
- Pulumi 3.157.0
|
||||
- Skopeo 1.13.3
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- yamllint 1.37.0
|
||||
@@ -101,13 +101,13 @@ to accomplish this.
|
||||
- Ninja 1.12.1
|
||||
|
||||
### CLI Tools
|
||||
- AWS CLI 2.26.1
|
||||
- AWS CLI 2.25.1
|
||||
- AWS CLI Session Manager Plugin 1.2.707.0
|
||||
- AWS SAM CLI 1.137.1
|
||||
- Azure CLI 2.71.0
|
||||
- AWS SAM CLI 1.135.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- GitHub CLI 2.69.0
|
||||
- Google Cloud CLI 517.0.0
|
||||
- Google Cloud CLI 515.0.0
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
@@ -119,35 +119,35 @@ to accomplish this.
|
||||
|
||||
### PHP Tools
|
||||
- PHP: 8.3.6
|
||||
- Composer 2.8.8
|
||||
- Composer 2.8.6
|
||||
- PHPUnit 8.5.41
|
||||
```
|
||||
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
```
|
||||
|
||||
### Haskell Tools
|
||||
- Cabal 3.14.2.0
|
||||
- Cabal 3.14.1.1
|
||||
- GHC 9.12.2
|
||||
- GHCup 0.1.50.1
|
||||
- Stack 3.5.1
|
||||
- GHCup 0.1.50.0
|
||||
- Stack 3.3.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.86.0
|
||||
- Rust 1.86.0
|
||||
- Rustdoc 1.86.0
|
||||
- Cargo 1.85.1
|
||||
- Rust 1.85.1
|
||||
- Rustdoc 1.85.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 135.0.7049.84
|
||||
- ChromeDriver 135.0.7049.84
|
||||
- Chromium 135.0.7049.0
|
||||
- Microsoft Edge 135.0.3179.73
|
||||
- Microsoft Edge WebDriver 135.0.3179.73
|
||||
- Selenium server 4.31.0
|
||||
- Mozilla Firefox 136.0.4
|
||||
- Google Chrome 134.0.6998.165
|
||||
- ChromeDriver 134.0.6998.165
|
||||
- Chromium 134.0.6998.0
|
||||
- Microsoft Edge 134.0.3124.83
|
||||
- Microsoft Edge WebDriver 134.0.3124.83
|
||||
- Selenium server 4.30.0
|
||||
- Mozilla Firefox 136.0.2
|
||||
- Geckodriver 0.36.0
|
||||
|
||||
#### Environment variables
|
||||
@@ -159,7 +159,7 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
| SELENIUM_JAR_PATH | /usr/share/java/selenium-server.jar |
|
||||
|
||||
### .NET Tools
|
||||
- .NET Core SDK: 8.0.115
|
||||
- .NET Core SDK: 8.0.114
|
||||
- nbgv 3.7.115+d31f50f4d1
|
||||
|
||||
### Databases
|
||||
@@ -187,27 +187,27 @@ 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.8
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 18.20.8
|
||||
- 18.20.7
|
||||
- 20.19.0
|
||||
- 22.14.0
|
||||
|
||||
#### Python
|
||||
- 3.9.22
|
||||
- 3.10.17
|
||||
- 3.11.12
|
||||
- 3.12.10
|
||||
- 3.13.3
|
||||
- 3.9.21
|
||||
- 3.10.16
|
||||
- 3.11.11
|
||||
- 3.12.9
|
||||
- 3.13.2
|
||||
|
||||
#### PyPy
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
|
||||
#### Ruby
|
||||
- 3.2.8
|
||||
- 3.3.8
|
||||
- 3.2.7
|
||||
- 3.3.7
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.7
|
||||
@@ -225,17 +225,17 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| nginx | 1.24.0 | /etc/nginx/nginx.conf | inactive | 80 |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 12.0 |
|
||||
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1<br>34.0.0 |
|
||||
| Android SDK Platform-Tools | 35.0.2 |
|
||||
| Android SDK Platforms | android-36 (rev 1)<br>android-35-ext15 (rev 1)<br>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 Support Repository | 47.0.0 |
|
||||
| CMake | 3.31.5 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 26.3.11579264<br>27.2.12479018 (default)<br>28.0.13004108 |
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 12.0 |
|
||||
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1<br>34.0.0 |
|
||||
| Android SDK Platform-Tools | 35.0.2 |
|
||||
| Android SDK Platforms | android-36 (rev 1)<br>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 Support Repository | 47.0.0 |
|
||||
| CMake | 3.31.5 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 26.3.11579264<br>27.2.12479018 (default)<br>28.0.13004108 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -248,78 +248,78 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| ANDROID_SDK_ROOT | /usr/local/lib/android/sdk |
|
||||
|
||||
### Installed apt packages
|
||||
| Name | Version |
|
||||
| ---------------------- | ---------------------------- |
|
||||
| acl | 2.3.2-1build1.1 |
|
||||
| aria2 | 1.37.0+debian-1build3 |
|
||||
| autoconf | 2.71-3 |
|
||||
| automake | 1:1.16.5-1.3ubuntu1 |
|
||||
| binutils | 2.42-4ubuntu2.5 |
|
||||
| bison | 2:3.8.2+dfsg-1build2 |
|
||||
| brotli | 1.1.0-2build2 |
|
||||
| bzip2 | 1.0.8-5.1build0.1 |
|
||||
| coreutils | 9.4-3ubuntu6 |
|
||||
| curl | 8.5.0-2ubuntu10.6 |
|
||||
| dbus | 1.14.10-4ubuntu4.1 |
|
||||
| dnsutils | 1:9.18.30-0ubuntu0.24.04.2 |
|
||||
| dpkg | 1.22.6ubuntu6.1 |
|
||||
| dpkg-dev | 1.22.6ubuntu6.1 |
|
||||
| fakeroot | 1.33-1 |
|
||||
| file | 1:5.45-3build1 |
|
||||
| findutils | 4.9.0-5build1 |
|
||||
| flex | 2.6.4-8.2build1 |
|
||||
| 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 |
|
||||
| gnupg2 | 2.4.4-2ubuntu17.2 |
|
||||
| haveged | 1.9.14-1ubuntu2 |
|
||||
| iproute2 | 6.1.0-1ubuntu6 |
|
||||
| iputils-ping | 3:20240117-1build1 |
|
||||
| jq | 1.7.1-3build1 |
|
||||
| libsqlite3-dev | 3.45.1-1ubuntu2.1 |
|
||||
| libssl-dev | 3.0.13-0ubuntu3.5 |
|
||||
| libtool | 2.4.7-7build1 |
|
||||
| libyaml-dev | 0.2.5-1build1 |
|
||||
| locales | 2.39-0ubuntu8.4 |
|
||||
| lz4 | 1.9.4-1build1.1 |
|
||||
| m4 | 1.4.19-4build1 |
|
||||
| make | 4.3-4.1build2 |
|
||||
| mediainfo | 24.01.1-1build2 |
|
||||
| mercurial | 6.7.2-1ubuntu2.2 |
|
||||
| net-tools | 2.10-0.1ubuntu4 |
|
||||
| netcat | 1.226-1ubuntu2 |
|
||||
| openssh-client | 1:9.6p1-3ubuntu13.9 |
|
||||
| p7zip-full | 16.02+transitional.1 |
|
||||
| p7zip-rar | 16.02+transitional.1 |
|
||||
| parallel | 20231122+ds-1 |
|
||||
| patchelf | 0.18.0-1.1build1 |
|
||||
| pigz | 2.8-1 |
|
||||
| pkg-config | 1.8.1-2build1 |
|
||||
| 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 |
|
||||
| shellcheck | 0.9.0-1 |
|
||||
| sphinxsearch | 2.2.11-8build1 |
|
||||
| sqlite3 | 3.45.1-1ubuntu2.1 |
|
||||
| ssh | 1:9.6p1-3ubuntu13.9 |
|
||||
| sshpass | 1.09-1 |
|
||||
| sudo | 1.9.15p5-3ubuntu5 |
|
||||
| swig | 4.2.0-2ubuntu1 |
|
||||
| systemd-coredump | 255.4-1ubuntu8.6 |
|
||||
| tar | 1.35+dfsg-3build1 |
|
||||
| telnet | 0.17+2.5-3ubuntu4 |
|
||||
| texinfo | 7.1-3build2 |
|
||||
| time | 1.9-0.2build1 |
|
||||
| tk | 8.6.14build1 |
|
||||
| tree | 2.1.1-2ubuntu3 |
|
||||
| tzdata | 2025b-0ubuntu0.24.04 |
|
||||
| unzip | 6.0-28ubuntu4.1 |
|
||||
| upx | 4.2.2-3 |
|
||||
| wget | 1.21.4-1ubuntu4.1 |
|
||||
| xvfb | 2:21.1.12-1ubuntu1.3 |
|
||||
| xz-utils | 5.6.1+really5.4.5-1ubuntu0.2 |
|
||||
| zip | 3.0-13ubuntu0.2 |
|
||||
| zsync | 0.6.2-5build1 |
|
||||
| Name | Version |
|
||||
| ---------------------- | --------------------------- |
|
||||
| acl | 2.3.2-1build1.1 |
|
||||
| aria2 | 1.37.0+debian-1build3 |
|
||||
| autoconf | 2.71-3 |
|
||||
| automake | 1:1.16.5-1.3ubuntu1 |
|
||||
| binutils | 2.42-4ubuntu2.4 |
|
||||
| bison | 2:3.8.2+dfsg-1build2 |
|
||||
| brotli | 1.1.0-2build2 |
|
||||
| bzip2 | 1.0.8-5.1build0.1 |
|
||||
| coreutils | 9.4-3ubuntu6 |
|
||||
| curl | 8.5.0-2ubuntu10.6 |
|
||||
| dbus | 1.14.10-4ubuntu4.1 |
|
||||
| dnsutils | 1:9.18.30-0ubuntu0.24.04.2 |
|
||||
| dpkg | 1.22.6ubuntu6.1 |
|
||||
| dpkg-dev | 1.22.6ubuntu6.1 |
|
||||
| fakeroot | 1.33-1 |
|
||||
| file | 1:5.45-3build1 |
|
||||
| findutils | 4.9.0-5build1 |
|
||||
| flex | 2.6.4-8.2build1 |
|
||||
| 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 |
|
||||
| gnupg2 | 2.4.4-2ubuntu17 |
|
||||
| haveged | 1.9.14-1ubuntu2 |
|
||||
| iproute2 | 6.1.0-1ubuntu6 |
|
||||
| iputils-ping | 3:20240117-1build1 |
|
||||
| jq | 1.7.1-3build1 |
|
||||
| libsqlite3-dev | 3.45.1-1ubuntu2.1 |
|
||||
| libssl-dev | 3.0.13-0ubuntu3.5 |
|
||||
| libtool | 2.4.7-7build1 |
|
||||
| libyaml-dev | 0.2.5-1build1 |
|
||||
| locales | 2.39-0ubuntu8.4 |
|
||||
| lz4 | 1.9.4-1build1.1 |
|
||||
| m4 | 1.4.19-4build1 |
|
||||
| make | 4.3-4.1build2 |
|
||||
| mediainfo | 24.01.1-1build2 |
|
||||
| mercurial | 6.7.2-1ubuntu2.2 |
|
||||
| net-tools | 2.10-0.1ubuntu4 |
|
||||
| netcat | 1.226-1ubuntu2 |
|
||||
| openssh-client | 1:9.6p1-3ubuntu13.8 |
|
||||
| p7zip-full | 16.02+transitional.1 |
|
||||
| p7zip-rar | 16.02+transitional.1 |
|
||||
| parallel | 20231122+ds-1 |
|
||||
| patchelf | 0.18.0-1.1build1 |
|
||||
| pigz | 2.8-1 |
|
||||
| pkg-config | 1.8.1-2build1 |
|
||||
| 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 |
|
||||
| shellcheck | 0.9.0-1 |
|
||||
| sphinxsearch | 2.2.11-8build1 |
|
||||
| sqlite3 | 3.45.1-1ubuntu2.1 |
|
||||
| ssh | 1:9.6p1-3ubuntu13.8 |
|
||||
| sshpass | 1.09-1 |
|
||||
| sudo | 1.9.15p5-3ubuntu5 |
|
||||
| swig | 4.2.0-2ubuntu1 |
|
||||
| systemd-coredump | 255.4-1ubuntu8.6 |
|
||||
| tar | 1.35+dfsg-3build1 |
|
||||
| telnet | 0.17+2.5-3ubuntu4 |
|
||||
| texinfo | 7.1-3build2 |
|
||||
| time | 1.9-0.2build1 |
|
||||
| tk | 8.6.14build1 |
|
||||
| tree | 2.1.1-2ubuntu3 |
|
||||
| tzdata | 2024b-0ubuntu0.24.04.1 |
|
||||
| unzip | 6.0-28ubuntu4.1 |
|
||||
| upx | 4.2.2-3 |
|
||||
| wget | 1.21.4-1ubuntu4.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 |
|
||||
|
||||
|
||||
@@ -9,16 +9,16 @@ source $HELPER_SCRIPTS/os.sh
|
||||
touch /etc/apt/apt-mirrors.txt
|
||||
|
||||
printf "http://azure.archive.ubuntu.com/ubuntu/\tpriority:1\n" | tee -a /etc/apt/apt-mirrors.txt
|
||||
printf "https://archive.ubuntu.com/ubuntu/\tpriority:2\n" | tee -a /etc/apt/apt-mirrors.txt
|
||||
printf "https://security.ubuntu.com/ubuntu/\tpriority:3\n" | tee -a /etc/apt/apt-mirrors.txt
|
||||
printf "http://archive.ubuntu.com/ubuntu/\tpriority:2\n" | tee -a /etc/apt/apt-mirrors.txt
|
||||
printf "http://security.ubuntu.com/ubuntu/\tpriority:3\n" | tee -a /etc/apt/apt-mirrors.txt
|
||||
|
||||
if is_ubuntu24; then
|
||||
sed -i 's/https:\/\/azure.archive.ubuntu.com\/ubuntu\//mirror+file:\/etc\/apt\/apt-mirrors.txt/' /etc/apt/sources.list.d/ubuntu.sources
|
||||
sed -i 's/http:\/\/azure.archive.ubuntu.com\/ubuntu\//mirror+file:\/etc\/apt\/apt-mirrors.txt/' /etc/apt/sources.list.d/ubuntu.sources
|
||||
|
||||
# Apt changes to survive Cloud Init
|
||||
cp -f /etc/apt/sources.list.d/ubuntu.sources /etc/cloud/templates/sources.list.ubuntu.deb822.tmpl
|
||||
else
|
||||
sed -i 's/https:\/\/azure.archive.ubuntu.com\/ubuntu\//mirror+file:\/etc\/apt\/apt-mirrors.txt/' /etc/apt/sources.list
|
||||
sed -i 's/http:\/\/azure.archive.ubuntu.com\/ubuntu\//mirror+file:\/etc\/apt\/apt-mirrors.txt/' /etc/apt/sources.list
|
||||
|
||||
# Apt changes to survive Cloud Init
|
||||
cp -f /etc/apt/sources.list /etc/cloud/templates/sources.list.ubuntu.tmpl
|
||||
|
||||
@@ -31,8 +31,6 @@ echo 'APT::Get::Always-Include-Phased-Updates "true";' > /etc/apt/apt.conf.d/99-
|
||||
cat <<EOF >> /etc/apt/apt.conf.d/99bad_proxy
|
||||
Acquire::http::Pipeline-Depth 0;
|
||||
Acquire::http::No-Cache true;
|
||||
Acquire::https::Pipeline-Depth 0;
|
||||
Acquire::https::No-Cache true;
|
||||
Acquire::BrokenProxy true;
|
||||
EOF
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@ EOF
|
||||
|
||||
# Install libicu70 package for Ubuntu 24
|
||||
if is_ubuntu24 ; then
|
||||
wget https://archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu70_70.1-2_amd64.deb
|
||||
|
||||
EXPECTED_LIBICU_SHA512="a6315482d93606e375c272718d2458870b95e4ed4b672ea8640cf7bc2d2c2f41aea13b798b1e417e1ffc472a90c6aad150d3d293aa9bddec48e39106e4042807"
|
||||
ACTUAL_LIBICU_SHA512="$(sha512sum "./libicu70_70.1-2_amd64.deb" | awk '{print $1}')"
|
||||
[ "$EXPECTED_LIBICU_SHA512" = "$ACTUAL_LIBICU_SHA512" ] || { echo "libicu checksum mismatch in configure-dpkg.sh"; exit 1;}
|
||||
wget http://archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu70_70.1-2_amd64.deb
|
||||
sudo apt-get install -y ./libicu70_70.1-2_amd64.deb
|
||||
fi
|
||||
|
||||
@@ -12,7 +12,7 @@ source_key=/usr/share/keyrings/eslerlang.gpg
|
||||
|
||||
# Install Erlang
|
||||
wget -q -O - https://binaries2.erlang-solutions.com/GPG-KEY-pmanager.asc | gpg --dearmor > $source_key
|
||||
echo "deb [signed-by=$source_key] https://binaries2.erlang-solutions.com/ubuntu $(lsb_release -cs)-esl-erlang-25 contrib" > $source_list
|
||||
echo "deb [signed-by=$source_key] http://binaries2.erlang-solutions.com/ubuntu $(lsb_release -cs)-esl-erlang-25 contrib" > $source_list
|
||||
apt-get update
|
||||
|
||||
apt-get install --no-install-recommends esl-erlang
|
||||
|
||||
@@ -11,7 +11,7 @@ source $HELPER_SCRIPTS/etc-environment.sh
|
||||
# Mozillateam PPA is added manually because sometimes
|
||||
# launchpad portal sends empty answer when trying to add it automatically
|
||||
|
||||
REPO_URL="https://ppa.launchpadcontent.net/mozillateam/ppa/ubuntu/"
|
||||
REPO_URL="http://ppa.launchpad.net/mozillateam/ppa/ubuntu"
|
||||
GPG_FINGERPRINT="0ab215679c571d1c8325275b9bdb3d89ce49ec21"
|
||||
GPG_KEY="/etc/apt/trusted.gpg.d/mozillateam_ubuntu_ppa.gpg"
|
||||
REPO_PATH="/etc/apt/sources.list.d/mozillateam-ubuntu-ppa-focal.list"
|
||||
|
||||
@@ -11,7 +11,7 @@ source $HELPER_SCRIPTS/os.sh
|
||||
# Install libssl1.1 dependency
|
||||
if is_ubuntu22; then
|
||||
focal_list=/etc/apt/sources.list.d/focal-security.list
|
||||
echo "deb https://archive.ubuntu.com/ubuntu/ focal-security main" | tee "${focal_list}"
|
||||
echo "deb http://archive.ubuntu.com/ubuntu/ focal-security main" | tee "${focal_list}"
|
||||
apt-get update --quiet
|
||||
|
||||
apt-get install --no-install-recommends libssl1.1
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Windows] Breaking change : Updating Service Fabric runtime and SDK to latest( 10.1.2493.9590 ) from 2025-04-04](https://github.com/actions/runner-images/issues/11773) |
|
||||
| [Windows Server 2025 will be Generally Available in GitHub Actions and Azure DevOps from 2025-04-08](https://github.com/actions/runner-images/issues/11742) |
|
||||
| [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-09 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-09](https://github.com/actions/runner-images/issues/11710) |
|
||||
| [Windows Server 2025 is now available](https://github.com/actions/runner-images/issues/11228) |
|
||||
***
|
||||
# Windows Server 2019
|
||||
- OS Version: 10.0.17763 Build 7009
|
||||
- Image Version: 20250406.1.0
|
||||
- Image Version: 20250330.1.0
|
||||
|
||||
## Windows features
|
||||
- Windows Subsystem for Linux (WSLv1): Enabled
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.4.3
|
||||
- Composer 2.8.8
|
||||
- Composer 2.8.6
|
||||
- Helm 3.17.1
|
||||
- Miniconda 25.1.1 (pre-installed on the image but not added to PATH)
|
||||
- NPM 10.8.2
|
||||
@@ -37,7 +37,7 @@
|
||||
- pip 25.0.1 (python 3.9)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.2.33
|
||||
- Vcpkg (build from commit 856505bb76)
|
||||
- Vcpkg (build from commit acd5bba5aa)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -58,18 +58,18 @@
|
||||
- azcopy 10.28.1
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.34.44
|
||||
- Bicep 0.33.13
|
||||
- Cabal 3.14.1.1
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.7
|
||||
- CMake 4.0.0
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker 27.5.1
|
||||
- Docker Compose v2 2.32.2
|
||||
- Docker-wincred 0.9.3
|
||||
- ghc 9.12.2
|
||||
- Git 2.49.0.windows.1
|
||||
- Git LFS 3.6.1
|
||||
- Google Cloud CLI 517.0.0
|
||||
- ImageMagick 7.1.1-47
|
||||
- Google Cloud CLI 516.0.0
|
||||
- ImageMagick 7.1.1-46
|
||||
- InnoSetup 6.4.0
|
||||
- jq 1.7.1
|
||||
- Kind 0.27.0
|
||||
@@ -97,19 +97,19 @@
|
||||
- Ninja 1.12.1
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.265
|
||||
- AWS CLI 2.25.11
|
||||
- Alibaba Cloud CLI 3.0.264
|
||||
- AWS CLI 2.25.4
|
||||
- AWS SAM CLI 1.136.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.71.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure DevOps CLI extension 1.0.1
|
||||
- Cloud Foundry CLI 8.12.0
|
||||
- GitHub CLI 2.69.0
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.86.0
|
||||
- Rust 1.86.0
|
||||
- Rustdoc 1.86.0
|
||||
- Cargo 1.85.1
|
||||
- Rust 1.85.1
|
||||
- Rustdoc 1.85.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
@@ -117,18 +117,18 @@
|
||||
- cargo-audit 0.21.2
|
||||
- cargo-outdated 0.17.0
|
||||
- cbindgen 0.28.0
|
||||
- Clippy 0.1.86
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 135.0.7049.42
|
||||
- Chrome Driver 135.0.7049.42
|
||||
- Microsoft Edge 135.0.3179.54
|
||||
- Microsoft Edge Driver 135.0.3179.54
|
||||
- Mozilla Firefox 137.0
|
||||
- Google Chrome 134.0.6998.178
|
||||
- Chrome Driver 134.0.6998.165
|
||||
- Microsoft Edge 134.0.3124.93
|
||||
- Microsoft Edge Driver 134.0.3124.93
|
||||
- Mozilla Firefox 136.0.4
|
||||
- Gecko Driver 0.36.0
|
||||
- IE Driver 4.14.0.0
|
||||
- Selenium server 4.31.0
|
||||
- Selenium server 4.30.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -172,7 +172,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 1.20.14
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.8
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
@@ -511,7 +511,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 12.1.0
|
||||
- AWSPowershell: 4.1.793
|
||||
- AWSPowershell: 4.1.787
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.26.1
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Windows] Breaking change : Updating Service Fabric runtime and SDK to latest( 10.1.2493.9590 ) from 2025-04-04](https://github.com/actions/runner-images/issues/11773) |
|
||||
| [Windows Server 2025 will be Generally Available in GitHub Actions and Azure DevOps from 2025-04-08](https://github.com/actions/runner-images/issues/11742) |
|
||||
| [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-09 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-09](https://github.com/actions/runner-images/issues/11710) |
|
||||
| [Windows Server 2025 is now available](https://github.com/actions/runner-images/issues/11228) |
|
||||
***
|
||||
# Windows Server 2022
|
||||
- OS Version: 10.0.20348 Build 3328
|
||||
- Image Version: 20250406.1.0
|
||||
- Image Version: 20250330.1.0
|
||||
|
||||
## Windows features
|
||||
- Windows Subsystem for Linux (WSLv1): Enabled
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.4.3
|
||||
- Composer 2.8.8
|
||||
- Composer 2.8.6
|
||||
- Helm 3.17.1
|
||||
- Miniconda 25.1.1 (pre-installed on the image but not added to PATH)
|
||||
- NPM 10.8.2
|
||||
@@ -37,7 +37,7 @@
|
||||
- pip 25.0.1 (python 3.9)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.2.33
|
||||
- Vcpkg (build from commit 856505bb76)
|
||||
- Vcpkg (build from commit acd5bba5aa)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -58,17 +58,17 @@
|
||||
- azcopy 10.28.1
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.34.44
|
||||
- Bicep 0.33.13
|
||||
- Cabal 3.14.1.1
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.20.7
|
||||
- CMake 4.0.0
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker 27.5.1
|
||||
- Docker Compose v2 2.32.2
|
||||
- Docker-wincred 0.9.3
|
||||
- ghc 9.12.2
|
||||
- Git 2.49.0.windows.1
|
||||
- Git LFS 3.6.1
|
||||
- ImageMagick 7.1.1-47
|
||||
- ImageMagick 7.1.1-46
|
||||
- InnoSetup 6.4.0
|
||||
- jq 1.7.1
|
||||
- Kind 0.27.0
|
||||
@@ -95,18 +95,18 @@
|
||||
- Ninja 1.12.1
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.265
|
||||
- AWS CLI 2.25.11
|
||||
- Alibaba Cloud CLI 3.0.264
|
||||
- AWS CLI 2.25.4
|
||||
- AWS SAM CLI 1.136.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.71.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure DevOps CLI extension 1.0.1
|
||||
- GitHub CLI 2.69.0
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.86.0
|
||||
- Rust 1.86.0
|
||||
- Rustdoc 1.86.0
|
||||
- Cargo 1.85.1
|
||||
- Rust 1.85.1
|
||||
- Rustdoc 1.85.1
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
@@ -114,18 +114,18 @@
|
||||
- cargo-audit 0.21.2
|
||||
- cargo-outdated 0.17.0
|
||||
- cbindgen 0.28.0
|
||||
- Clippy 0.1.86
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 135.0.7049.42
|
||||
- Chrome Driver 135.0.7049.42
|
||||
- Microsoft Edge 135.0.3179.54
|
||||
- Microsoft Edge Driver 135.0.3179.54
|
||||
- Mozilla Firefox 137.0
|
||||
- Google Chrome 134.0.6998.178
|
||||
- Chrome Driver 134.0.6998.165
|
||||
- Microsoft Edge 134.0.3124.93
|
||||
- Microsoft Edge Driver 134.0.3124.93
|
||||
- Mozilla Firefox 136.0.4
|
||||
- Gecko Driver 0.36.0
|
||||
- IE Driver 4.14.0.0
|
||||
- Selenium server 4.31.0
|
||||
- Selenium server 4.30.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -166,7 +166,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 1.20.14
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.8
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
@@ -507,7 +507,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 12.4.0
|
||||
- AWSPowershell: 4.1.793
|
||||
- AWSPowershell: 4.1.787
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.26.1
|
||||
|
||||
@@ -1,43 +1,43 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Windows-2025] LLVM will be updated to version 20 on 2025-06-06](https://github.com/actions/runner-images/issues/12001) |
|
||||
| [[Windows] Go version 1.20 and 1.21 will be removed from the images on 2025-05-09 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-09](https://github.com/actions/runner-images/issues/11710) |
|
||||
| [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 Server 2025
|
||||
- OS Version: 10.0.26100 Build 3775
|
||||
- Image Version: 20250413.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.13.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.8
|
||||
- Go 1.23.7
|
||||
- Julia 1.10.5
|
||||
- Kotlin 2.1.10
|
||||
- LLVM 19.1.7
|
||||
- Node 22.14.0
|
||||
- Perl 5.40.0
|
||||
- PHP 8.4.6
|
||||
- PHP 8.4.4
|
||||
- Python 3.9.13
|
||||
- Ruby 3.3.8
|
||||
- Ruby 3.3.7
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.4.3
|
||||
- Composer 2.8.8
|
||||
- Helm 3.17.2
|
||||
- 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.13.2.1
|
||||
- pip 25.0.1 (python 3.9)
|
||||
- Pipx 1.7.1
|
||||
- RubyGems 3.5.22
|
||||
- Vcpkg (build from commit bc994510d2)
|
||||
- Vcpkg (build from commit 300239058e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -50,73 +50,72 @@
|
||||
- Ant 1.10.14
|
||||
- Gradle 8.13
|
||||
- Maven 3.9.9
|
||||
- sbt 1.10.11
|
||||
- sbt 1.10.10
|
||||
|
||||
### Tools
|
||||
- 7zip 24.09
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.28.1
|
||||
- azcopy 10.28.0
|
||||
- Bazel 8.1.1
|
||||
- Bazelisk 1.26.0
|
||||
- Bicep 0.34.44
|
||||
- Cabal 3.14.2.0
|
||||
- Bazelisk 1.25.0
|
||||
- Bicep 0.33.13
|
||||
- Cabal 3.14.1.1
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.21.0
|
||||
- CodeQL Action Bundle 2.20.1
|
||||
- Docker 27.5.1
|
||||
- Docker Compose v2 2.32.2
|
||||
- Docker-wincred 0.9.3
|
||||
- ghc 9.12.2
|
||||
- Git 2.49.0.windows.1
|
||||
- Docker-wincred 0.9.2
|
||||
- ghc 9.12.1
|
||||
- Git 2.48.1.windows.1
|
||||
- Git LFS 3.6.1
|
||||
- ImageMagick 7.1.1-47
|
||||
- ImageMagick 7.1.1-44
|
||||
- jq 1.7.1
|
||||
- Kind 0.27.0
|
||||
- Kubectl 1.32.3
|
||||
- Kubectl 1.32.2
|
||||
- gcc 14.2.0
|
||||
- gdb 16.2
|
||||
- GNU Binutils 2.44
|
||||
- gdb 14.2
|
||||
- GNU Binutils 2.43
|
||||
- Newman 6.2.1
|
||||
- OpenSSL 3.4.1
|
||||
- Packer 1.12.0
|
||||
- Pulumi 3.162.0
|
||||
- Pulumi 3.154.0
|
||||
- R 4.4.2
|
||||
- Service Fabric SDK 10.1.2493.9590
|
||||
- Stack 3.5.1
|
||||
- Stack 3.3.1
|
||||
- Swig 4.1.1
|
||||
- VSWhere 3.1.7
|
||||
- WinAppDriver 1.2.2009.02003
|
||||
- WiX Toolset 3.14.1.8722
|
||||
- yamllint 1.37.0
|
||||
- yamllint 1.35.1
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.12.1
|
||||
|
||||
### CLI Tools
|
||||
- AWS CLI 2.26.1
|
||||
- AWS SAM CLI 1.137.1
|
||||
- AWS CLI 2.24.20
|
||||
- AWS SAM CLI 1.134.0
|
||||
- AWS Session Manager CLI 1.2.707.0
|
||||
- Azure CLI 2.71.0
|
||||
- Azure CLI 2.70.0
|
||||
- Azure DevOps CLI extension 1.0.1
|
||||
- GitHub CLI 2.69.0
|
||||
- GitHub CLI 2.68.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.86.0
|
||||
- Rust 1.86.0
|
||||
- Rustdoc 1.86.0
|
||||
- Cargo 1.85.0
|
||||
- Rust 1.85.0
|
||||
- Rustdoc 1.85.0
|
||||
- Rustup 1.28.1
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.86
|
||||
- Clippy 0.1.85
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 135.0.7049.85
|
||||
- Chrome Driver 135.0.7049.84
|
||||
- Microsoft Edge 135.0.3179.73
|
||||
- Microsoft Edge Driver 135.0.3179.73
|
||||
- Mozilla Firefox 137.0.1
|
||||
- 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.31.0
|
||||
- Selenium server 4.29.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -156,28 +155,28 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
#### Go
|
||||
- 1.21.13
|
||||
- 1.22.12
|
||||
- 1.23.8
|
||||
- 1.23.7
|
||||
|
||||
#### Node.js
|
||||
- 18.20.8
|
||||
- 20.19.0
|
||||
- 18.20.7
|
||||
- 20.18.3
|
||||
- 22.14.0
|
||||
|
||||
#### Python
|
||||
- 3.9.13
|
||||
- 3.10.11
|
||||
- 3.11.9
|
||||
- 3.12.10
|
||||
- 3.13.3
|
||||
- 3.12.9
|
||||
- 3.13.2
|
||||
|
||||
#### PyPy
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
|
||||
#### Ruby
|
||||
- 3.1.7
|
||||
- 3.2.8
|
||||
- 3.3.8
|
||||
- 3.1.6
|
||||
- 3.2.7
|
||||
- 3.3.7
|
||||
|
||||
### Databases
|
||||
|
||||
@@ -196,7 +195,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
#### MongoDB
|
||||
| Version | ServiceName | ServiceStatus | ServiceStartType |
|
||||
| -------- | ----------- | ------------- | ---------------- |
|
||||
| 7.0.18.0 | MongoDB | Stopped | Disabled |
|
||||
| 7.0.16.0 | MongoDB | Stopped | Disabled |
|
||||
|
||||
### Database tools
|
||||
- Azure CosmosDb Emulator 2.14.21.0
|
||||
@@ -204,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.5.0
|
||||
- MongoDB Shell (mongosh) 2.4.2
|
||||
|
||||
### Web Servers
|
||||
| Name | Version | ConfigFile | ServiceName | ServiceStatus | ListenPort |
|
||||
@@ -468,11 +467,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 10.0.26100.0
|
||||
|
||||
### .NET Core Tools
|
||||
- .NET Core SDK: 8.0.115, 8.0.206, 8.0.311, 8.0.408, 9.0.105, 9.0.200, 9.0.203
|
||||
- .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.13, 8.0.15, 9.0.2, 9.0.4
|
||||
- Microsoft.NETCore.App: 8.0.6, 8.0.13, 8.0.15, 9.0.2, 9.0.4
|
||||
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.13, 8.0.15, 9.0.2, 9.0.4
|
||||
- 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,30 +479,30 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 12.4.0
|
||||
- AWSPowershell: 4.1.798
|
||||
- AWSPowershell: 4.1.773
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.26.1
|
||||
- Pester: 3.4.0, 5.7.1
|
||||
- PowerShellGet: 1.0.0.1, 2.2.5
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
- PSScriptAnalyzer: 1.23.0
|
||||
- PSWindowsUpdate: 2.2.1.5
|
||||
- SqlServer: 22.3.0
|
||||
- VSSetup: 2.2.16
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| Android Emulator | 35.4.9 |
|
||||
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1<br>34.0.0 |
|
||||
| Android SDK Platforms | android-36 (rev 1)<br>android-35-ext15 (rev 1)<br>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<br>3.31.5 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 26.3.11579264<br>27.2.12479018<br>28.0.13004108 |
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| 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<br>3.31.5 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 26.3.11579264<br>27.2.12479018<br>28.0.13004108 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
|
||||
@@ -23,7 +23,6 @@ foreach ($module in $modules) {
|
||||
foreach ($version in $module.versions) {
|
||||
$modulePath = Join-Path -Path $installPSModulePath -ChildPath "${moduleName}_${version}"
|
||||
Write-Host " - $version [$modulePath]"
|
||||
$psModuleMachinePath += "$modulePath;"
|
||||
Save-Module -Path $modulePath -Name $moduleName -RequiredVersion $version -Force -ErrorAction Stop
|
||||
}
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
################################################################################
|
||||
|
||||
Install-Binary -Type MSI `
|
||||
-Url 'https://go.microsoft.com/fwlink/?LinkId=287166' `
|
||||
-Url 'http://go.microsoft.com/fwlink/?LinkId=287166' `
|
||||
-ExpectedSignature 'C3A3D43788E7ABCD287CB4F5B6583043774F99D2'
|
||||
|
||||
Invoke-PesterTests -TestFile "Tools" -TestName "WebPlatformInstaller"
|
||||
|
||||
@@ -224,8 +224,7 @@
|
||||
"edition" : "Enterprise",
|
||||
"channel": "release",
|
||||
"signature": [
|
||||
"8F985BE8FD256085C90A95D3C74580511A1DB975",
|
||||
"245D262748012A4FE6CE8BA6C951A4C4AFBC3E5D"
|
||||
"8F985BE8FD256085C90A95D3C74580511A1DB975"
|
||||
],
|
||||
"workloads": [
|
||||
"Component.Dotfuscator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft-07/schema#",
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"patternProperties": {
|
||||
"^.*$": {
|
||||
|
||||
Reference in New Issue
Block a user