Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ae0f1cb417 |
@@ -38,7 +38,6 @@ body:
|
||||
options:
|
||||
- label: Ubuntu 20.04
|
||||
- label: Ubuntu 22.04
|
||||
- label: Ubuntu 24.04
|
||||
- label: macOS 11
|
||||
- label: macOS 12
|
||||
- label: macOS 13
|
||||
|
||||
@@ -21,7 +21,6 @@ body:
|
||||
options:
|
||||
- label: Ubuntu 20.04
|
||||
- label: Ubuntu 22.04
|
||||
- label: Ubuntu 24.04
|
||||
- label: macOS 11
|
||||
- label: macOS 12
|
||||
- label: macOS 13
|
||||
|
||||
@@ -59,7 +59,6 @@ body:
|
||||
options:
|
||||
- label: Ubuntu 20.04
|
||||
- label: Ubuntu 22.04
|
||||
- label: Ubuntu 24.04
|
||||
- label: macOS 11
|
||||
- label: macOS 12
|
||||
- label: macOS 13
|
||||
|
||||
@@ -40,11 +40,11 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v3
|
||||
uses: github/codeql-action/init@v2
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||
@@ -55,7 +55,7 @@ jobs:
|
||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||
# If this step fails, then you should remove it and run the build manually (see below)
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v3
|
||||
uses: github/codeql-action/autobuild@v2
|
||||
|
||||
# ℹ️ Command-line programs to run using the OS shell.
|
||||
# 📚 https://git.io/JvXDl
|
||||
@@ -69,4 +69,4 @@ jobs:
|
||||
# make release
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v3
|
||||
uses: github/codeql-action/analyze@v2
|
||||
@@ -17,7 +17,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Run Software Report module tests
|
||||
shell: pwsh
|
||||
|
||||
@@ -21,15 +21,14 @@ To build a VM machine from this repo's source, see the [instructions](docs/creat
|
||||
|
||||
| Image | YAML Label | Included Software | Rollout Status of Latest Image Release |
|
||||
| --------------------|---------------------|--------------------|--------------------|
|
||||
| Ubuntu 24.04 <sup>beta</sup> | `ubuntu-24.04` | [ubuntu-24.04] |  |
|
||||
| Ubuntu 22.04 | `ubuntu-latest` or `ubuntu-22.04` | [ubuntu-22.04] |  |
|
||||
| Ubuntu 20.04 | `ubuntu-20.04` | [ubuntu-20.04] |  |
|
||||
| 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] |  |
|
||||
| macOS 13 Arm64 | `macos-13-xlarge` | [macOS-13-arm64] |  |
|
||||
| macOS 12 | `macos-12` or `macos-12-large`| [macOS-12] |  |
|
||||
| macOS 11 <sup>deprecated</sup> | `macos-11`| [macOS-11] |  |
|
||||
| macOS 12 | `macos-12` or `macos-12-large`| [macOS-12] |  |
|
||||
| macOS 11 [deprecated] | `macos-11`| [macOS-11] |  |
|
||||
| Windows Server 2022 | `windows-latest` or `windows-2022` | [windows-2022] |  |
|
||||
| Windows Server 2019 | `windows-2019` | [windows-2019] |  |
|
||||
|
||||
@@ -38,7 +37,6 @@ To build a VM machine from this repo's source, see the [instructions](docs/creat
|
||||
- In general the `-latest` label is used for the latest OS image version that is GA
|
||||
- Before moving the`-latest` label to a new OS version we will announce the change and give sufficient lead time for users to update their workflows
|
||||
|
||||
[ubuntu-24.04]: https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404-Readme.md
|
||||
[ubuntu-22.04]: https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
|
||||
[ubuntu-20.04]: https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2004-Readme.md
|
||||
[windows-2022]: https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md
|
||||
@@ -83,6 +81,11 @@ GitHub Actions and Azure DevOps use the `-latest` YAML label (ex: `ubuntu-latest
|
||||
|
||||
The `-latest` migration process is gradual and happens over 1-2 months in order to allow customers to adapt their workflows to the newest OS version. During this process, any workflow using the `-latest` label, may see changes in the OS version in their workflows or pipelines. To avoid unwanted migration, users can specify a specific OS version in the yaml file (ex: macos-12, windows-2022, ubuntu-22.04).
|
||||
|
||||
#### Planned & ongoing migration(s)
|
||||
|
||||
We are currently in the process of `macos-14` to `macos-latest` migration, details can be found [here](https://github.blog/changelog/2024-04-01-macos-14-sonoma-is-generally-available-and-the-latest-macos-runner-image).
|
||||
|
||||
|
||||
## Image Releases
|
||||
|
||||
*How to best follow along with changes*
|
||||
@@ -129,7 +132,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](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) |
|
||||
| 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) <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/> [gcc, gfortran](https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test) <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) |
|
||||
|
||||
@@ -5,8 +5,7 @@ enum ImageType {
|
||||
Windows2022 = 2
|
||||
Ubuntu2004 = 3
|
||||
Ubuntu2204 = 4
|
||||
Ubuntu2404 = 5
|
||||
UbuntuMinimal = 6
|
||||
UbuntuMinimal = 5
|
||||
}
|
||||
|
||||
Function Get-PackerTemplatePath {
|
||||
@@ -31,9 +30,6 @@ Function Get-PackerTemplatePath {
|
||||
([ImageType]::Ubuntu2204) {
|
||||
$relativeTemplatePath = Join-Path (Join-Path "ubuntu" "templates") "ubuntu-22.04.pkr.hcl"
|
||||
}
|
||||
([ImageType]::Ubuntu2404) {
|
||||
$relativeTemplatePath = Join-Path (Join-Path "ubuntu" "templates") "ubuntu-24.04.pkr.hcl"
|
||||
}
|
||||
([ImageType]::UbuntuMinimal) {
|
||||
$relativeTemplatePath = Join-Path (Join-Path "ubuntu" "templates") "ubuntu-minimal.pkr.hcl"
|
||||
}
|
||||
|
||||
@@ -59,13 +59,11 @@ jobs:
|
||||
arguments: -RepoUrl $(CUSTOM_REPOSITORY_URL) `
|
||||
-RepoBranch $(CUSTOM_REPOSITORY_BRANCH)
|
||||
|
||||
- task: AzureCLI@2
|
||||
- task: PowerShell@2
|
||||
displayName: 'Set variables'
|
||||
inputs:
|
||||
azureSubscription: 'spn-hosted-runners'
|
||||
scriptType: 'pscore'
|
||||
scriptLocation: 'inlineScript'
|
||||
inlineScript: |
|
||||
targetType: 'inline'
|
||||
script: |
|
||||
$ImageType = "${{ parameters.image_type }}"
|
||||
$TemplateDirectoryName = if ($ImageType.StartsWith("ubuntu")) { "ubuntu/templates" } else { "windows/templates" }
|
||||
$TemplateDirectoryPath = Join-Path "images" $TemplateDirectoryName | Resolve-Path
|
||||
@@ -81,16 +79,13 @@ jobs:
|
||||
$TempResourceGroupName = "packer-temp-$ManagedImageName"
|
||||
Write-Host "##vso[task.setvariable variable=TempResourceGroupName;]$TempResourceGroupName"
|
||||
|
||||
$clientSecret = $(az keyvault secret show --name "spnhostedrunners" --vault-name "gh-imagegeneration" --query value -o tsv)
|
||||
Write-Host "##vso[task.setvariable variable=ClientSecret;issecret=true]$clientSecret"
|
||||
|
||||
- task: PowerShell@2
|
||||
displayName: 'Build VM'
|
||||
inputs:
|
||||
targetType: filePath
|
||||
filePath: ./images.CI/linux-and-win/build-image.ps1
|
||||
arguments: -ClientId $(CLIENT_ID) `
|
||||
-ClientSecret "$(ClientSecret)" `
|
||||
-ClientSecret $(CLIENT_SECRET) `
|
||||
-TemplatePath $(TemplatePath) `
|
||||
-ImageName "$(ManagedImageName)" `
|
||||
-ImageResourceGroupName $(AZURE_RESOURCE_GROUP) `
|
||||
@@ -177,5 +172,5 @@ jobs:
|
||||
arguments: -TempResourceGroupName "$(TempResourceGroupName)" `
|
||||
-SubscriptionId $(AZURE_SUBSCRIPTION) `
|
||||
-ClientId $(CLIENT_ID) `
|
||||
-ClientSecret "$(ClientSecret)" `
|
||||
-ClientSecret $(CLIENT_SECRET) `
|
||||
-TenantId $(AZURE_TENANT)
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
schedules:
|
||||
- cron: "0 0 * * *"
|
||||
displayName: Daily
|
||||
branches:
|
||||
include:
|
||||
- main
|
||||
always: true
|
||||
|
||||
trigger: none
|
||||
pr:
|
||||
autoCancel: true
|
||||
branches:
|
||||
include:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
- template: image-generation.yml
|
||||
parameters:
|
||||
image_type: ubuntu2404
|
||||
image_readme_name: Ubuntu2404-Readme.md
|
||||
image_template_name: ubuntu-24.04.pkr.hcl
|
||||
@@ -1,12 +1,12 @@
|
||||
# macOS 12
|
||||
- OS Version: macOS 12.7.4 (21H1123)
|
||||
- Kernel Version: Darwin 21.6.0
|
||||
- Image Version: 20240514.3
|
||||
- Image Version: 20240406.2
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 6.0.422, 7.0.102, 7.0.202, 7.0.306, 7.0.409, 8.0.101, 8.0.204, 8.0.300
|
||||
- .NET Core SDK: 6.0.420, 7.0.102, 7.0.202, 7.0.306, 7.0.407, 8.0.101, 8.0.203
|
||||
- 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`
|
||||
@@ -16,35 +16,35 @@
|
||||
- GNU Fortran 11 (Homebrew GCC 11.4.0) - available by `gfortran-11` alias
|
||||
- GNU Fortran 12 (Homebrew GCC 12.3.0) - available by `gfortran-12` alias
|
||||
- GNU Fortran 13 (Homebrew GCC 13.2.0) - available by `gfortran-13` alias
|
||||
- Julia 1.10.3
|
||||
- Kotlin 1.9.24-release-822
|
||||
- Go 1.21.10
|
||||
- Julia 1.10.2
|
||||
- Kotlin 1.9.23-release-779
|
||||
- Go 1.21.9
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 18.20.2
|
||||
- Node.js 18.20.1
|
||||
- MSBuild 16.10.1.51301 (Mono 6.12.0.188)
|
||||
- NVM 0.39.7
|
||||
- NVM - Cached node versions: 16.20.2, 18.20.2, 20.13.1
|
||||
- NVM - Cached node versions: 16.20.2, 18.20.1, 20.12.1
|
||||
- Perl 5.38.2
|
||||
- PHP 8.3.7
|
||||
- PHP 8.3.4
|
||||
- Python 2.7.18
|
||||
- Python3 3.12.3
|
||||
- R 4.4.0
|
||||
- Ruby 3.0.7p220
|
||||
- Python3 3.12.2
|
||||
- R 4.3.3
|
||||
- Ruby 3.0.6p216
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.5.10
|
||||
- Bundler 2.5.7
|
||||
- Carthage 0.39.1
|
||||
- CocoaPods 1.15.2
|
||||
- Composer 2.7.6
|
||||
- Homebrew 4.3.0
|
||||
- Miniconda 24.3.0
|
||||
- Composer 2.7.2
|
||||
- Homebrew 4.2.16
|
||||
- Miniconda 24.1.2
|
||||
- NPM 10.5.0
|
||||
- NuGet 6.3.1.1
|
||||
- Pip 20.3.4 (python 2.7)
|
||||
- Pip3 24.0 (python 3.12)
|
||||
- Pipx 1.5.0
|
||||
- RubyGems 3.5.10
|
||||
- Vcpkg 2024 (build from commit bd2b54836)
|
||||
- RubyGems 3.5.7
|
||||
- Vcpkg 2024 (build from commit 5fa0f075e)
|
||||
- Yarn 1.22.19
|
||||
|
||||
#### Environment variables
|
||||
@@ -57,57 +57,57 @@
|
||||
- Apache Ant 1.10.14
|
||||
- Apache Maven 3.9.6
|
||||
- Gradle 8.7
|
||||
- Sbt 1.10.0
|
||||
- Sbt 1.9.9
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.24.0
|
||||
- bazel 7.1.2
|
||||
- bazelisk 1.20.0
|
||||
- bazel 7.1.1
|
||||
- bazelisk 1.19.0
|
||||
- bsdtar 3.5.1 - available by 'tar' alias
|
||||
- Curl 8.7.1
|
||||
- Git 2.45.1
|
||||
- Git 2.44.0
|
||||
- Git LFS 3.5.1
|
||||
- GitHub CLI 2.49.2
|
||||
- GitHub CLI 2.47.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.24.5
|
||||
- gpg (GnuPG) 2.4.5
|
||||
- ImageMagick 7.1.1-32
|
||||
- ImageMagick 7.1.1-29
|
||||
- jq 1.7.1
|
||||
- mongo 5.0.26
|
||||
- mongod 5.0.26
|
||||
- mongo 5.0.21
|
||||
- mongod 5.0.21
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.9.4
|
||||
- pkg-config 0.29.2
|
||||
- PostgreSQL 14.12 (Homebrew)
|
||||
- psql (PostgreSQL) 14.12 (Homebrew)
|
||||
- PostgreSQL 14.11 (Homebrew)
|
||||
- psql (PostgreSQL) 14.11 (Homebrew)
|
||||
- Sox 14.4.2
|
||||
- Subversion (SVN) 1.14.3
|
||||
- Switchaudio-osx 1.2.2
|
||||
- Vagrant 2.4.1
|
||||
- VirtualBox 6.1.38r153438
|
||||
- yq 4.44.1
|
||||
- yq 4.43.1
|
||||
- zstd 1.5.6
|
||||
|
||||
### Tools
|
||||
- App Center CLI 3.0.0
|
||||
- AWS CLI 2.15.50
|
||||
- AWS SAM CLI 1.116.0
|
||||
- AWS CLI 2.15.36
|
||||
- AWS SAM CLI 1.114.0
|
||||
- AWS Session Manager CLI 1.2.553.0
|
||||
- Azure CLI 2.60.0
|
||||
- Azure CLI 2.59.0
|
||||
- Azure CLI (azure-devops) 1.0.0
|
||||
- Bicep CLI 0.27.1
|
||||
- Cabal 3.10.3.0
|
||||
- Cmake 3.29.3
|
||||
- CodeQL Action Bundle 2.17.2
|
||||
- Bicep CLI 0.26.54
|
||||
- Cabal 3.10.2.1
|
||||
- Cmake 3.29.1
|
||||
- CodeQL Action Bundle 2.17.0
|
||||
- Colima 0.6.8
|
||||
- Fastlane 2.220.0
|
||||
- GHC 9.10.1
|
||||
- GHC 9.8.2
|
||||
- GHCup 0.1.22.0
|
||||
- Jazzy 0.15.0
|
||||
- Jazzy 0.14.4
|
||||
- Stack 2.15.5
|
||||
- SwiftFormat 0.53.9
|
||||
- SwiftFormat 0.53.5
|
||||
- Swig 4.2.1
|
||||
- Xcbeautify 1.6.0
|
||||
- Xcode Command Line Tools 14.2.0.0.1.1668646533
|
||||
@@ -120,14 +120,14 @@
|
||||
### Browsers
|
||||
- Safari 17.4.1 (17618.1.15.111.8)
|
||||
- SafariDriver 17.4.1 (17618.1.15.111.8)
|
||||
- Google Chrome 124.0.6367.208
|
||||
- Google Chrome for Testing 124.0.6367.207
|
||||
- ChromeDriver 124.0.6367.207
|
||||
- Microsoft Edge 124.0.2478.105
|
||||
- Microsoft Edge WebDriver 124.0.2478.105
|
||||
- Mozilla Firefox 126.0
|
||||
- Google Chrome 123.0.6312.107
|
||||
- Google Chrome for Testing 123.0.6312.105
|
||||
- ChromeDriver 123.0.6312.105
|
||||
- Microsoft Edge 123.0.2420.81
|
||||
- Microsoft Edge WebDriver 123.0.2420.81
|
||||
- Mozilla Firefox 124.0.2
|
||||
- geckodriver 0.34.0
|
||||
- Selenium server 4.20.0
|
||||
- Selenium server 4.19.1
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -139,23 +139,23 @@
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| ------------------- | -------------------- |
|
||||
| 8.0.412+8 (default) | JAVA_HOME_8_X64 |
|
||||
| 11.0.23+9 | JAVA_HOME_11_X64 |
|
||||
| 17.0.11+9 | JAVA_HOME_17_X64 |
|
||||
| 21.0.3+9.0 | JAVA_HOME_21_X64 |
|
||||
| 8.0.402+6 (default) | JAVA_HOME_8_X64 |
|
||||
| 11.0.22+7 | JAVA_HOME_11_X64 |
|
||||
| 17.0.10+7 | JAVA_HOME_17_X64 |
|
||||
| 21.0.2+13.0 | JAVA_HOME_21_X64 |
|
||||
|
||||
### Cached Tools
|
||||
|
||||
#### PyPy
|
||||
- 2.7.18 [PyPy 7.3.16]
|
||||
- 2.7.18 [PyPy 7.3.15]
|
||||
- 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.16]
|
||||
- 3.9.18 [PyPy 7.3.15]
|
||||
- 3.10.13 [PyPy 7.3.15]
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.5
|
||||
- 3.0.6
|
||||
- 3.1.4
|
||||
|
||||
#### Python
|
||||
- 3.7.17
|
||||
@@ -163,37 +163,37 @@
|
||||
- 3.9.19
|
||||
- 3.10.14
|
||||
- 3.11.9
|
||||
- 3.12.3
|
||||
- 3.12.2
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
- 18.20.2
|
||||
- 20.13.1
|
||||
- 18.20.1
|
||||
- 20.12.1
|
||||
|
||||
#### Go
|
||||
- 1.20.14
|
||||
- 1.21.10
|
||||
- 1.22.3
|
||||
- 1.21.9
|
||||
- 1.22.2
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.78.0
|
||||
- Rust 1.78.0
|
||||
- Rustdoc 1.78.0
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.77.1
|
||||
- Rust 1.77.1
|
||||
- Rustdoc 1.77.1
|
||||
- Rustup 1.27.0
|
||||
|
||||
#### Packages
|
||||
- Bindgen 0.69.4
|
||||
- Cargo-audit 0.20.0
|
||||
- Cargo-outdated 0.15.0
|
||||
- Cbindgen 0.26.0
|
||||
- Clippy 0.1.78
|
||||
- Clippy 0.1.77
|
||||
- Rustfmt 1.7.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.2
|
||||
- PowerShell 7.4.1
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 11.6.0
|
||||
- Az: 11.5.0
|
||||
- MarkdownPS: 1.9
|
||||
- Pester: 5.5.0
|
||||
- PSScriptAnalyzer: 1.22.0
|
||||
@@ -202,7 +202,7 @@
|
||||
| Name | Version | ConfigFile | ServiceStatus | ListenPort |
|
||||
| ----- | ------- | ------------------------------- | ------------- | ---------- |
|
||||
| httpd | 2.4.59 | /usr/local/etc/httpd/httpd.conf | none | 80 |
|
||||
| nginx | 1.25.5 | /usr/local/etc/nginx/nginx.conf | none | 80 |
|
||||
| nginx | 1.25.4 | /usr/local/etc/nginx/nginx.conf | none | 80 |
|
||||
|
||||
### Xamarin
|
||||
|
||||
@@ -210,7 +210,7 @@
|
||||
| Version | Build | Path |
|
||||
| -------------- | ----------- | ------------------------------------ |
|
||||
| 2019 | 8.10.25.2 | /Applications/Visual Studio 2019.app |
|
||||
| 2022 (default) | 17.6.12.410 | /Applications/Visual Studio.app |
|
||||
| 2022 (default) | 17.6.10.428 | /Applications/Visual Studio.app |
|
||||
|
||||
##### Notes
|
||||
```
|
||||
@@ -330,15 +330,15 @@ mv "/Applications/Visual Studio 2019.app" "/Applications/Visual Studio.app"
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 8.0 |
|
||||
| Android Emulator | 34.2.13 |
|
||||
| Android Emulator | 34.1.20 |
|
||||
| Android SDK Build-tools | 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-34-ext8 (rev 1)<br>android-34-ext11 (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 Platforms | android-34-ext8 (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.1 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.18.1<br>3.22.1 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653 (default)<br>26.3.11579264 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653 (default)<br>26.2.11394342 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -346,7 +346,7 @@ mv "/Applications/Visual Studio 2019.app" "/Applications/Visual Studio.app"
|
||||
| ANDROID_HOME | /Users/runner/Library/Android/sdk |
|
||||
| ANDROID_NDK | /Users/runner/Library/Android/sdk/ndk/25.2.9519653 |
|
||||
| ANDROID_NDK_HOME | /Users/runner/Library/Android/sdk/ndk/25.2.9519653 |
|
||||
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_ROOT | /Users/runner/Library/Android/sdk/ndk/25.2.9519653 |
|
||||
| ANDROID_SDK_ROOT | /Users/runner/Library/Android/sdk |
|
||||
|
||||
@@ -359,10 +359,11 @@ mv "/Applications/Visual Studio 2019.app" "/Applications/Visual Studio.app"
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------- | ----------------------------------------------------------------------------------------- |
|
||||
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v19/19.3.1-54941/ParallelsDesktop-19.3.1-54941.dmg |
|
||||
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v19/19.3.0-54924/ParallelsDesktop-19.3.0-54924.dmg |
|
||||
|
||||
##### Notes
|
||||
```
|
||||
If you want to use Parallels Desktop you should download a package from URL stored in
|
||||
PARALLELS_DMG_URL environment variable. A system extension is allowed for this version.
|
||||
```
|
||||
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# macOS 13
|
||||
- OS Version: macOS 13.6.6 (22G630)
|
||||
- Kernel Version: Darwin 22.6.0
|
||||
- Image Version: 20240514.3
|
||||
- Image Version: 20240405.2
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.409, 8.0.101, 8.0.204, 8.0.300
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.407, 8.0.101, 8.0.203
|
||||
- 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`
|
||||
@@ -16,26 +16,26 @@
|
||||
- GNU Fortran 11 (Homebrew GCC 11.4.0) - available by `gfortran-11` alias
|
||||
- GNU Fortran 12 (Homebrew GCC 12.3.0) - available by `gfortran-12` alias
|
||||
- GNU Fortran 13 (Homebrew GCC 13.2.0) - available by `gfortran-13` alias
|
||||
- Kotlin 1.9.24-release-822
|
||||
- Kotlin 1.9.23-release-779
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 20.13.1
|
||||
- Node.js 20.12.1
|
||||
- Perl 5.38.2
|
||||
- PHP 8.3.7
|
||||
- Python3 3.12.3
|
||||
- Ruby 3.0.7p220
|
||||
- PHP 8.3.4
|
||||
- Python3 3.12.2
|
||||
- Ruby 3.0.6p216
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.5.10
|
||||
- Bundler 2.5.7
|
||||
- Carthage 0.39.1
|
||||
- CocoaPods 1.15.2
|
||||
- Composer 2.7.6
|
||||
- Homebrew 4.3.0
|
||||
- NPM 10.5.2
|
||||
- Composer 2.7.2
|
||||
- Homebrew 4.2.16
|
||||
- NPM 10.5.0
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 24.0 (python 3.12)
|
||||
- Pipx 1.5.0
|
||||
- RubyGems 3.5.10
|
||||
- Vcpkg 2024 (build from commit bd2b54836)
|
||||
- RubyGems 3.5.7
|
||||
- Vcpkg 2024 (build from commit 8d8cec243)
|
||||
- Yarn 1.22.19
|
||||
|
||||
### Project Management
|
||||
@@ -47,13 +47,13 @@
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.24.0
|
||||
- bazel 7.1.2
|
||||
- bazelisk 1.20.0
|
||||
- bazel 7.1.1
|
||||
- bazelisk 1.19.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.7.1
|
||||
- Git 2.45.1
|
||||
- Git 2.44.0
|
||||
- Git LFS 3.5.1
|
||||
- GitHub CLI 2.49.2
|
||||
- GitHub CLI 2.47.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.24.5
|
||||
- gpg (GnuPG) 2.4.5
|
||||
@@ -61,21 +61,21 @@
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.9.4
|
||||
- pkg-config 0.29.2
|
||||
- yq 4.44.1
|
||||
- yq 4.43.1
|
||||
- zstd 1.5.6
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.15.50
|
||||
- AWS SAM CLI 1.116.0
|
||||
- AWS CLI 2.15.36
|
||||
- AWS SAM CLI 1.114.0
|
||||
- AWS Session Manager CLI 1.2.553.0
|
||||
- Azure CLI 2.60.0
|
||||
- Azure CLI 2.59.0
|
||||
- Azure CLI (azure-devops) 1.0.0
|
||||
- Bicep CLI 0.27.1
|
||||
- Cmake 3.29.3
|
||||
- CodeQL Action Bundle 2.17.2
|
||||
- Bicep CLI 0.26.54
|
||||
- Cmake 3.29.1
|
||||
- CodeQL Action Bundle 2.17.0
|
||||
- Fastlane 2.220.0
|
||||
- SwiftFormat 0.53.9
|
||||
- Xcbeautify 2.3.1
|
||||
- SwiftFormat 0.53.5
|
||||
- Xcbeautify 2.0.1
|
||||
- Xcode Command Line Tools 14.3.1.0.1.1683849156
|
||||
- Xcodes 1.4.1
|
||||
|
||||
@@ -85,14 +85,14 @@
|
||||
### Browsers
|
||||
- Safari 17.4.1 (18618.1.15.111.8)
|
||||
- SafariDriver 17.4.1 (18618.1.15.111.8)
|
||||
- Google Chrome 124.0.6367.208
|
||||
- Google Chrome for Testing 124.0.6367.207
|
||||
- ChromeDriver 124.0.6367.207
|
||||
- Microsoft Edge 124.0.2478.105
|
||||
- Microsoft Edge WebDriver 124.0.2478.105
|
||||
- Mozilla Firefox 126.0
|
||||
- Google Chrome 123.0.6312.107
|
||||
- Google Chrome for Testing 123.0.6312.105
|
||||
- ChromeDriver 123.0.6312.105
|
||||
- Microsoft Edge 123.0.2420.81
|
||||
- Microsoft Edge WebDriver 123.0.2420.81
|
||||
- Mozilla Firefox 124.0.2
|
||||
- geckodriver 0.34.0
|
||||
- Selenium server 4.20.0
|
||||
- Selenium server 4.19.1
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -104,56 +104,56 @@
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| ------------------- | -------------------- |
|
||||
| 8.0.412+8 | JAVA_HOME_8_X64 |
|
||||
| 11.0.23+9 | JAVA_HOME_11_X64 |
|
||||
| 17.0.11+9 (default) | JAVA_HOME_17_X64 |
|
||||
| 21.0.3+9.0 | JAVA_HOME_21_X64 |
|
||||
| 8.0.402+6 | JAVA_HOME_8_X64 |
|
||||
| 11.0.22+7 | JAVA_HOME_11_X64 |
|
||||
| 17.0.10+7 (default) | JAVA_HOME_17_X64 |
|
||||
| 21.0.2+13.0 | JAVA_HOME_21_X64 |
|
||||
|
||||
### Cached Tools
|
||||
|
||||
#### PyPy
|
||||
- 2.7.18 [PyPy 7.3.16]
|
||||
- 2.7.18 [PyPy 7.3.15]
|
||||
- 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.16]
|
||||
- 3.9.18 [PyPy 7.3.15]
|
||||
- 3.10.13 [PyPy 7.3.15]
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.5
|
||||
- 3.0.6
|
||||
- 3.1.4
|
||||
|
||||
#### Python
|
||||
- 3.8.18
|
||||
- 3.9.19
|
||||
- 3.10.14
|
||||
- 3.11.9
|
||||
- 3.12.3
|
||||
- 3.12.2
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
- 18.20.2
|
||||
- 20.13.1
|
||||
- 18.20.1
|
||||
- 20.12.1
|
||||
|
||||
#### Go
|
||||
- 1.20.14
|
||||
- 1.21.10
|
||||
- 1.22.3
|
||||
- 1.21.9
|
||||
- 1.22.2
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.78.0
|
||||
- Rust 1.78.0
|
||||
- Rustdoc 1.78.0
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.77.1
|
||||
- Rust 1.77.1
|
||||
- Rustdoc 1.77.1
|
||||
- Rustup 1.27.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.78
|
||||
- Clippy 0.1.77
|
||||
- Rustfmt 1.7.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.2
|
||||
- PowerShell 7.4.1
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 11.6.0
|
||||
- Az: 11.5.0
|
||||
- Pester: 5.5.0
|
||||
- PSScriptAnalyzer: 1.22.0
|
||||
|
||||
@@ -201,11 +201,11 @@
|
||||
| Simulator - watchOS 9.4 | watchsimulator9.4 | 14.3.1 |
|
||||
| Simulator - watchOS 10.0 | watchsimulator10.0 | 15.0.1 |
|
||||
| Simulator - watchOS 10.2 | watchsimulator10.2 | 15.1, 15.2 |
|
||||
| Simulator - visionOS 1.0 | xrsimulator1.0 | 15.2 |
|
||||
| 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 |
|
||||
@@ -233,22 +233,22 @@
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 34.2.13 |
|
||||
| Android Emulator | 34.1.20 |
|
||||
| Android SDK Build-tools | 34.0.0<br>33.0.2 33.0.3 |
|
||||
| Android SDK Platforms | android-34-ext8 (rev 1)<br>android-34-ext11 (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 Platforms | android-34-ext8 (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.1 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.22.1 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653<br>26.3.11579264 (default) |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653<br>26.2.11394342 (default) |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------------- | --------------------------------------------------- |
|
||||
| ANDROID_HOME | /Users/runner/Library/Android/sdk |
|
||||
| ANDROID_NDK | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_HOME | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_ROOT | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_HOME | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_ROOT | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_SDK_ROOT | /Users/runner/Library/Android/sdk |
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# macOS 13
|
||||
- OS Version: macOS 13.6.6 (22G630)
|
||||
- Kernel Version: Darwin 22.6.0
|
||||
- Image Version: 20240514.3
|
||||
- Image Version: 20240415.2
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.409, 8.0.101, 8.0.204, 8.0.300
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.408, 8.0.101, 8.0.204
|
||||
- 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`
|
||||
@@ -16,23 +16,23 @@
|
||||
- GNU Fortran 11 (Homebrew GCC 11.4.0) - available by `gfortran-11` alias
|
||||
- GNU Fortran 12 (Homebrew GCC 12.3.0) - available by `gfortran-12` alias
|
||||
- GNU Fortran 13 (Homebrew GCC 13.2.0) - available by `gfortran-13` alias
|
||||
- Kotlin 1.9.24-release-822
|
||||
- Kotlin 1.9.23-release-779
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 20.13.1
|
||||
- Node.js 20.12.1
|
||||
- Perl 5.38.2
|
||||
- Python3 3.12.3
|
||||
- Ruby 3.0.7p220
|
||||
- Ruby 3.0.6p216
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.5.10
|
||||
- Bundler 2.5.9
|
||||
- Carthage 0.39.1
|
||||
- CocoaPods 1.15.2
|
||||
- Homebrew 4.3.0
|
||||
- NPM 10.5.2
|
||||
- Homebrew 4.2.18
|
||||
- NPM 10.5.0
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 24.0 (python 3.12)
|
||||
- Pipx 1.5.0
|
||||
- RubyGems 3.5.10
|
||||
- RubyGems 3.5.9
|
||||
- Yarn 1.22.19
|
||||
|
||||
### Project Management
|
||||
@@ -44,13 +44,13 @@
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.24.0
|
||||
- bazel 7.1.2
|
||||
- bazelisk 1.20.0
|
||||
- bazel 7.1.1
|
||||
- bazelisk 1.19.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.4.0
|
||||
- Git 2.45.1
|
||||
- Git 2.44.0
|
||||
- Git LFS 3.5.1
|
||||
- GitHub CLI 2.49.2
|
||||
- GitHub CLI 2.47.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.24.5
|
||||
- gpg (GnuPG) 2.4.5
|
||||
@@ -58,21 +58,21 @@
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.9.4
|
||||
- pkg-config 0.29.2
|
||||
- yq 4.44.1
|
||||
- yq 4.43.1
|
||||
- zstd 1.5.6
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.15.50
|
||||
- AWS SAM CLI 1.116.0
|
||||
- AWS CLI 2.15.38
|
||||
- AWS SAM CLI 1.115.0
|
||||
- AWS Session Manager CLI 1.2.553.0
|
||||
- Azure CLI 2.60.0
|
||||
- Azure CLI 2.59.0
|
||||
- Azure CLI (azure-devops) 1.0.0
|
||||
- Bicep CLI 0.27.1
|
||||
- Cmake 3.29.3
|
||||
- CodeQL Action Bundle 2.17.2
|
||||
- Bicep CLI 0.26.170
|
||||
- Cmake 3.29.2
|
||||
- CodeQL Action Bundle 2.17.0
|
||||
- Fastlane 2.220.0
|
||||
- SwiftFormat 0.53.9
|
||||
- Xcbeautify 2.3.1
|
||||
- SwiftFormat 0.53.7
|
||||
- Xcbeautify 2.1.0
|
||||
- Xcode Command Line Tools 14.3.1.0.1.1683849156
|
||||
- Xcodes 1.4.1
|
||||
|
||||
@@ -81,10 +81,10 @@
|
||||
### Browsers
|
||||
- Safari 17.4.1 (18618.1.15.111.8)
|
||||
- SafariDriver 17.4.1 (18618.1.15.111.8)
|
||||
- Google Chrome 124.0.6367.208
|
||||
- Google Chrome for Testing 124.0.6367.207
|
||||
- ChromeDriver 124.0.6367.207
|
||||
- Selenium server 4.20.0
|
||||
- Google Chrome 123.0.6312.124
|
||||
- Google Chrome for Testing 123.0.6312.122
|
||||
- ChromeDriver 123.0.6312.122
|
||||
- Selenium server 4.19.1
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -96,43 +96,41 @@
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| ------------------- | -------------------- |
|
||||
| 11.0.23+9 | JAVA_HOME_11_arm64 |
|
||||
| 17.0.11+9 (default) | JAVA_HOME_17_arm64 |
|
||||
| 21.0.3+9.0 | JAVA_HOME_21_arm64 |
|
||||
| 11.0.22+7.1 | JAVA_HOME_11_arm64 |
|
||||
| 17.0.10+7 (default) | JAVA_HOME_17_arm64 |
|
||||
| 21.0.2+13.0 | JAVA_HOME_21_arm64 |
|
||||
|
||||
### Cached Tools
|
||||
|
||||
#### Python
|
||||
- 3.9.13
|
||||
- 3.10.11
|
||||
- 3.11.9
|
||||
- 3.12.3
|
||||
|
||||
#### Node.js
|
||||
- 16.20.1
|
||||
- 18.20.2
|
||||
- 20.13.1
|
||||
- 20.12.2
|
||||
|
||||
#### Go
|
||||
- 1.20.14
|
||||
- 1.21.10
|
||||
- 1.22.3
|
||||
- 1.21.9
|
||||
- 1.22.2
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.78.0
|
||||
- Rust 1.78.0
|
||||
- Rustdoc 1.78.0
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.77.2
|
||||
- Rust 1.77.2
|
||||
- Rustdoc 1.77.2
|
||||
- Rustup 1.27.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.78
|
||||
- Clippy 0.1.77
|
||||
- Rustfmt 1.7.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.2
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 11.6.0
|
||||
- Az: 11.5.0
|
||||
- Pester: 5.5.0
|
||||
- PSScriptAnalyzer: 1.22.0
|
||||
|
||||
@@ -180,11 +178,11 @@
|
||||
| Simulator - watchOS 9.4 | watchsimulator9.4 | 14.3.1 |
|
||||
| Simulator - watchOS 10.0 | watchsimulator10.0 | 15.0.1 |
|
||||
| Simulator - watchOS 10.2 | watchsimulator10.2 | 15.1, 15.2 |
|
||||
| Simulator - visionOS 1.0 | xrsimulator1.0 | 15.2 |
|
||||
| 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 |
|
||||
@@ -213,7 +211,7 @@
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 34.2.13 |
|
||||
| Android Emulator | 34.1.20 |
|
||||
| Android SDK Build-tools | 34.0.0<br>33.0.2 33.0.3 |
|
||||
| Android SDK Platforms | android-34-ext8 (rev 1)<br>android-34-ext11 (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.1 |
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# macOS 14
|
||||
- OS Version: macOS 14.4.1 (23E224)
|
||||
- Kernel Version: Darwin 23.4.0
|
||||
- Image Version: 20240514.3
|
||||
- Image Version: 20240405.1
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.409, 8.0.101, 8.0.204, 8.0.300
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.407, 8.0.101, 8.0.203
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 14.0.3
|
||||
- Clang/LLVM (Homebrew) 15.0.7 - available on `$(brew --prefix llvm@15)/bin/clang`
|
||||
@@ -16,25 +16,25 @@
|
||||
- GNU Fortran 11 (Homebrew GCC 11.4.0) - available by `gfortran-11` alias
|
||||
- GNU Fortran 12 (Homebrew GCC 12.3.0) - available by `gfortran-12` alias
|
||||
- GNU Fortran 13 (Homebrew GCC 13.2.0) - available by `gfortran-13` alias
|
||||
- Kotlin 1.9.24-release-822
|
||||
- Kotlin 1.9.23-release-779
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 20.13.1
|
||||
- Node.js 20.12.1
|
||||
- Perl 5.38.2
|
||||
- PHP 8.3.7
|
||||
- Python3 3.12.3
|
||||
- Ruby 3.0.7p220
|
||||
- PHP 8.3.4
|
||||
- Python3 3.12.2
|
||||
- Ruby 3.0.6p216
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.5.10
|
||||
- Bundler 2.5.7
|
||||
- Carthage 0.39.1
|
||||
- CocoaPods 1.15.2
|
||||
- Composer 2.7.6
|
||||
- Homebrew 4.3.0
|
||||
- NPM 10.5.2
|
||||
- Composer 2.7.2
|
||||
- Homebrew 4.2.16
|
||||
- NPM 10.5.0
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 24.0 (python 3.12)
|
||||
- Pipx 1.5.0
|
||||
- RubyGems 3.5.10
|
||||
- RubyGems 3.5.7
|
||||
- Yarn 1.22.19
|
||||
|
||||
### Project Management
|
||||
@@ -46,13 +46,13 @@
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.24.0
|
||||
- bazel 7.1.2
|
||||
- bazelisk 1.20.0
|
||||
- bazel 7.1.1
|
||||
- bazelisk 1.19.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.7.1
|
||||
- Git 2.45.1
|
||||
- Git 2.44.0
|
||||
- Git LFS 3.5.1
|
||||
- GitHub CLI 2.49.2
|
||||
- GitHub CLI 2.47.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.24.5
|
||||
- gpg (GnuPG) 2.4.5
|
||||
@@ -60,21 +60,21 @@
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.9.4
|
||||
- pkg-config 0.29.2
|
||||
- yq 4.44.1
|
||||
- yq 4.43.1
|
||||
- zstd 1.5.6
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.15.50
|
||||
- AWS SAM CLI 1.116.0
|
||||
- AWS CLI 2.15.36
|
||||
- AWS SAM CLI 1.114.0
|
||||
- AWS Session Manager CLI 1.2.553.0
|
||||
- Azure CLI 2.60.0
|
||||
- Azure CLI 2.59.0
|
||||
- Azure CLI (azure-devops) 1.0.0
|
||||
- Bicep CLI 0.27.1
|
||||
- Cmake 3.29.3
|
||||
- CodeQL Action Bundle 2.17.2
|
||||
- Bicep CLI 0.26.54
|
||||
- Cmake 3.29.1
|
||||
- CodeQL Action Bundle 2.17.0
|
||||
- Fastlane 2.220.0
|
||||
- SwiftFormat 0.53.9
|
||||
- Xcbeautify 2.3.1
|
||||
- SwiftFormat 0.53.5
|
||||
- Xcbeautify 2.0.1
|
||||
- Xcode Command Line Tools 15.3.0.0.1.1708646388
|
||||
- Xcodes 1.4.1
|
||||
|
||||
@@ -84,14 +84,14 @@
|
||||
### Browsers
|
||||
- Safari 17.4.1 (19618.1.15.11.14)
|
||||
- SafariDriver 17.4.1 (19618.1.15.11.14)
|
||||
- Google Chrome 124.0.6367.208
|
||||
- Google Chrome for Testing 124.0.6367.207
|
||||
- ChromeDriver 124.0.6367.207
|
||||
- Microsoft Edge 124.0.2478.105
|
||||
- Microsoft Edge WebDriver 124.0.2478.97
|
||||
- Mozilla Firefox 126.0
|
||||
- Google Chrome 123.0.6312.107
|
||||
- Google Chrome for Testing 123.0.6312.105
|
||||
- ChromeDriver 123.0.6312.105
|
||||
- Microsoft Edge 123.0.2420.81
|
||||
- Microsoft Edge WebDriver 123.0.2420.81
|
||||
- Mozilla Firefox 124.0.2
|
||||
- geckodriver 0.34.0
|
||||
- Selenium server 4.20.0
|
||||
- Selenium server 4.19.1
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -101,56 +101,53 @@
|
||||
| GECKOWEBDRIVER | /usr/local/opt/geckodriver/bin |
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| -------------------- | -------------------- |
|
||||
| 8.0.412+8 | JAVA_HOME_8_X64 |
|
||||
| 11.0.23+9 | JAVA_HOME_11_X64 |
|
||||
| 17.0.11+9 | JAVA_HOME_17_X64 |
|
||||
| 21.0.3+9.0 (default) | JAVA_HOME_21_X64 |
|
||||
| Version | Environment Variable |
|
||||
| --------------------- | -------------------- |
|
||||
| 8.0.402+6 | JAVA_HOME_8_X64 |
|
||||
| 11.0.22+7 | JAVA_HOME_11_X64 |
|
||||
| 17.0.10+7 | JAVA_HOME_17_X64 |
|
||||
| 21.0.2+13.0 (default) | JAVA_HOME_21_X64 |
|
||||
|
||||
### Cached Tools
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.5
|
||||
- 3.0.6
|
||||
- 3.1.4
|
||||
|
||||
#### Python
|
||||
- 3.9.19
|
||||
- 3.10.14
|
||||
- 3.11.9
|
||||
- 3.12.3
|
||||
- 3.12.2
|
||||
|
||||
#### Node.js
|
||||
- 18.20.2
|
||||
- 20.13.1
|
||||
- 18.20.1
|
||||
- 20.12.1
|
||||
|
||||
#### Go
|
||||
- 1.20.14
|
||||
- 1.21.10
|
||||
- 1.22.3
|
||||
- 1.21.9
|
||||
- 1.22.2
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.78.0
|
||||
- Rust 1.78.0
|
||||
- Rustdoc 1.78.0
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.77.1
|
||||
- Rust 1.77.1
|
||||
- Rustdoc 1.77.1
|
||||
- Rustup 1.27.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.78
|
||||
- Clippy 0.1.77
|
||||
- Rustfmt 1.7.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.2
|
||||
- PowerShell 7.4.1
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 11.6.0
|
||||
- Az: 11.5.0
|
||||
- Pester: 5.5.0
|
||||
- PSScriptAnalyzer: 1.22.0
|
||||
|
||||
### Xcode
|
||||
| Version | Build | Path |
|
||||
| ---------------- | ------- | ------------------------------ |
|
||||
| 15.4 | 15F31c | /Applications/Xcode_15.4.app |
|
||||
| 15.3 | 15E204a | /Applications/Xcode_15.3.app |
|
||||
| 15.2 | 15C500b | /Applications/Xcode_15.2.app |
|
||||
| 15.1 | 15C65 | /Applications/Xcode_15.1.app |
|
||||
@@ -164,43 +161,34 @@
|
||||
| macOS 14.0 | macosx14.0 | 15.0.1 |
|
||||
| macOS 14.2 | macosx14.2 | 15.1, 15.2 |
|
||||
| macOS 14.4 | macosx14.4 | 15.3 |
|
||||
| macOS 14.5 | macosx14.5 | 15.4 |
|
||||
| iOS 16.4 | iphoneos16.4 | 14.3.1 |
|
||||
| iOS 17.0 | iphoneos17.0 | 15.0.1 |
|
||||
| iOS 17.2 | iphoneos17.2 | 15.1, 15.2 |
|
||||
| iOS 17.4 | iphoneos17.4 | 15.3 |
|
||||
| iOS 17.5 | iphoneos17.5 | 15.4 |
|
||||
| Simulator - iOS 16.4 | iphonesimulator16.4 | 14.3.1 |
|
||||
| Simulator - iOS 17.0 | iphonesimulator17.0 | 15.0.1 |
|
||||
| Simulator - iOS 17.2 | iphonesimulator17.2 | 15.1, 15.2 |
|
||||
| Simulator - iOS 17.4 | iphonesimulator17.4 | 15.3 |
|
||||
| Simulator - iOS 17.5 | iphonesimulator17.5 | 15.4 |
|
||||
| tvOS 16.4 | appletvos16.4 | 14.3.1 |
|
||||
| tvOS 17.0 | appletvos17.0 | 15.0.1 |
|
||||
| tvOS 17.2 | appletvos17.2 | 15.1, 15.2 |
|
||||
| tvOS 17.4 | appletvos17.4 | 15.3 |
|
||||
| tvOS 17.5 | appletvos17.5 | 15.4 |
|
||||
| Simulator - tvOS 16.4 | appletvsimulator16.4 | 14.3.1 |
|
||||
| Simulator - tvOS 17.0 | appletvsimulator17.0 | 15.0.1 |
|
||||
| Simulator - tvOS 17.2 | appletvsimulator17.2 | 15.1, 15.2 |
|
||||
| Simulator - tvOS 17.4 | appletvsimulator17.4 | 15.3 |
|
||||
| Simulator - tvOS 17.5 | appletvsimulator17.5 | 15.4 |
|
||||
| watchOS 9.4 | watchos9.4 | 14.3.1 |
|
||||
| watchOS 10.0 | watchos10.0 | 15.0.1 |
|
||||
| watchOS 10.2 | watchos10.2 | 15.1, 15.2 |
|
||||
| watchOS 10.4 | watchos10.4 | 15.3 |
|
||||
| watchOS 10.5 | watchos10.5 | 15.4 |
|
||||
| Simulator - watchOS 9.4 | watchsimulator9.4 | 14.3.1 |
|
||||
| Simulator - watchOS 10.0 | watchsimulator10.0 | 15.0.1 |
|
||||
| Simulator - watchOS 10.2 | watchsimulator10.2 | 15.1, 15.2 |
|
||||
| Simulator - watchOS 10.4 | watchsimulator10.4 | 15.3 |
|
||||
| Simulator - watchOS 10.5 | watchsimulator10.5 | 15.4 |
|
||||
| visionOS 1.0 | xros1.0 | 15.2 |
|
||||
| Simulator - visionOS 1.0 | xrsimulator1.0 | 15.2 |
|
||||
| Simulator - visionOS 1.1 | xrsimulator1.1 | 15.3 |
|
||||
| visionOS 1.0 | xros1.0 | 15.2 |
|
||||
| visionOS 1.1 | xros1.1 | 15.3 |
|
||||
| Simulator - visionOS 1.2 | xrsimulator1.2 | 15.4 |
|
||||
| visionOS 1.2 | xros1.2 | 15.4 |
|
||||
| Simulator - visionOS 1.1 | xrsimulator1.1 | 15.3 |
|
||||
| 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 |
|
||||
@@ -208,47 +196,43 @@
|
||||
| DriverKit 23.0 | driverkit23.0 | 15.0.1 |
|
||||
| DriverKit 23.2 | driverkit23.2 | 15.1, 15.2 |
|
||||
| DriverKit 23.4 | driverkit23.4 | 15.3 |
|
||||
| DriverKit 23.5 | driverkit23.5 | 15.4 |
|
||||
|
||||
#### Installed Simulators
|
||||
| OS | Xcode Version | Simulators |
|
||||
| ------------ | ------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| iOS 16.4 | 14.3.1 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 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.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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) |
|
||||
| tvOS 16.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.2 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.5 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| watchOS 9.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Ultra (49mm) |
|
||||
| watchOS 10.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.2 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.5 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| OS | Xcode Version | Simulators |
|
||||
| ------------ | ---------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| iOS 16.4 | 14.3.1 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 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.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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) |
|
||||
| tvOS 16.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.2 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| watchOS 9.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | 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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Ultra (49mm) |
|
||||
| watchOS 10.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | 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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.2 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | 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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | 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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 34.2.13 |
|
||||
| Android Emulator | 34.1.20 |
|
||||
| Android SDK Build-tools | 34.0.0<br>33.0.2 33.0.3 |
|
||||
| Android SDK Platforms | android-34-ext8 (rev 1)<br>android-34-ext11 (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 Platforms | android-34-ext8 (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.1 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.22.1 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653<br>26.3.11579264 (default) |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653<br>26.2.11394342 (default) |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------------- | --------------------------------------------------- |
|
||||
| ANDROID_HOME | /Users/runner/Library/Android/sdk |
|
||||
| ANDROID_NDK | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_HOME | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_ROOT | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_HOME | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_ROOT | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_SDK_ROOT | /Users/runner/Library/Android/sdk |
|
||||
|
||||
@@ -1,56 +1,56 @@
|
||||
# macOS 14
|
||||
- OS Version: macOS 14.5 (23F79)
|
||||
- Kernel Version: Darwin 23.5.0
|
||||
- Image Version: 20240526.2
|
||||
- OS Version: macOS 14.4.1 (23E224)
|
||||
- Kernel Version: Darwin 23.4.0
|
||||
- Image Version: 20240405.1
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.409, 8.0.101, 8.0.204, 8.0.300
|
||||
- .NET Core SDK: 7.0.102, 7.0.202, 7.0.306, 7.0.407, 8.0.101, 8.0.203
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 14.0.3
|
||||
- Clang/LLVM (Homebrew) 15.0.7 - available on `$(brew --prefix llvm@15)/bin/clang`
|
||||
- GCC 11 (Homebrew GCC 11.4.0) - available by `gcc-11` alias
|
||||
- GCC 12 (Homebrew GCC 12.3.0) - available by `gcc-12` alias
|
||||
- GCC 13 (Homebrew GCC 13.3.0) - available by `gcc-13` alias
|
||||
- GCC 13 (Homebrew GCC 13.2.0) - available by `gcc-13` alias
|
||||
- GNU Fortran 11 (Homebrew GCC 11.4.0) - available by `gfortran-11` alias
|
||||
- GNU Fortran 12 (Homebrew GCC 12.3.0) - available by `gfortran-12` alias
|
||||
- GNU Fortran 13 (Homebrew GCC 13.3.0) - available by `gfortran-13` alias
|
||||
- Kotlin 2.0.0-release-341
|
||||
- GNU Fortran 13 (Homebrew GCC 13.2.0) - available by `gfortran-13` alias
|
||||
- Kotlin 1.9.23-release-779
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 20.13.1
|
||||
- Node.js 20.12.1
|
||||
- Perl 5.38.2
|
||||
- Python3 3.12.3
|
||||
- Ruby 3.0.7p220
|
||||
- Python3 3.12.2
|
||||
- Ruby 3.0.6p216
|
||||
|
||||
### Package Management
|
||||
- Bundler 2.5.10
|
||||
- Bundler 2.5.7
|
||||
- Carthage 0.39.1
|
||||
- CocoaPods 1.15.2
|
||||
- Homebrew 4.3.1
|
||||
- NPM 10.5.2
|
||||
- Homebrew 4.2.16
|
||||
- NPM 10.5.0
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 24.0 (python 3.12)
|
||||
- Pipx 1.5.0
|
||||
- RubyGems 3.5.10
|
||||
- Yarn 1.22.22
|
||||
- RubyGems 3.5.7
|
||||
- Yarn 1.22.19
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.14
|
||||
- Apache Maven 3.9.7
|
||||
- Apache Maven 3.9.6
|
||||
- Gradle 8.7
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.24.0
|
||||
- bazel 7.1.2
|
||||
- bazelisk 1.20.0
|
||||
- bazel 7.1.1
|
||||
- bazelisk 1.19.0
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.6.0
|
||||
- Git 2.45.1
|
||||
- Curl 8.4.0
|
||||
- Git 2.44.0
|
||||
- Git LFS 3.5.1
|
||||
- GitHub CLI 2.49.2
|
||||
- GitHub CLI 2.47.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.24.5
|
||||
- gpg (GnuPG) 2.4.5
|
||||
@@ -58,33 +58,33 @@
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.9.4
|
||||
- pkg-config 0.29.2
|
||||
- yq 4.44.1
|
||||
- yq 4.43.1
|
||||
- zstd 1.5.6
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.15.58
|
||||
- AWS SAM CLI 1.117.0
|
||||
- AWS CLI 2.15.36
|
||||
- AWS SAM CLI 1.114.0
|
||||
- AWS Session Manager CLI 1.2.553.0
|
||||
- Azure CLI 2.61.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- Bicep CLI 0.27.1
|
||||
- Cmake 3.29.3
|
||||
- CodeQL Action Bundle 2.17.3
|
||||
- Azure CLI 2.59.0
|
||||
- Azure CLI (azure-devops) 1.0.0
|
||||
- Bicep CLI 0.26.54
|
||||
- Cmake 3.29.1
|
||||
- CodeQL Action Bundle 2.17.0
|
||||
- Fastlane 2.220.0
|
||||
- SwiftFormat 0.53.10
|
||||
- Xcbeautify 2.3.1
|
||||
- SwiftFormat 0.53.5
|
||||
- Xcbeautify 2.0.1
|
||||
- Xcode Command Line Tools 15.3.0.0.1.1708646388
|
||||
- Xcodes 1.4.1
|
||||
|
||||
### Linters
|
||||
|
||||
### Browsers
|
||||
- Safari 17.5 (19618.2.12.11.6)
|
||||
- SafariDriver 17.5 (19618.2.12.11.6)
|
||||
- Google Chrome 125.0.6422.113
|
||||
- Google Chrome for Testing 125.0.6422.78
|
||||
- ChromeDriver 125.0.6422.78
|
||||
- Selenium server 4.21.0
|
||||
- Safari 17.4.1 (19618.1.15.11.14)
|
||||
- SafariDriver 17.4.1 (19618.1.15.11.14)
|
||||
- Google Chrome 123.0.6312.107
|
||||
- Google Chrome for Testing 123.0.6312.105
|
||||
- ChromeDriver 123.0.6312.105
|
||||
- Selenium server 4.19.1
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -94,51 +94,48 @@
|
||||
| GECKOWEBDRIVER | |
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| -------------------- | -------------------- |
|
||||
| 11.0.23+9 | JAVA_HOME_11_arm64 |
|
||||
| 17.0.11+9 | JAVA_HOME_17_arm64 |
|
||||
| 21.0.3+9.0 (default) | JAVA_HOME_21_arm64 |
|
||||
| Version | Environment Variable |
|
||||
| --------------------- | -------------------- |
|
||||
| 11.0.22+7.1 | JAVA_HOME_11_arm64 |
|
||||
| 17.0.10+7 | JAVA_HOME_17_arm64 |
|
||||
| 21.0.2+13.0 (default) | JAVA_HOME_21_arm64 |
|
||||
|
||||
### Cached Tools
|
||||
|
||||
#### Python
|
||||
- 3.9.13
|
||||
- 3.10.11
|
||||
- 3.11.9
|
||||
- 3.12.3
|
||||
- 3.12.2
|
||||
|
||||
#### Node.js
|
||||
- 18.20.3
|
||||
- 20.13.1
|
||||
- 18.20.1
|
||||
- 20.12.1
|
||||
|
||||
#### Go
|
||||
- 1.20.14
|
||||
- 1.21.10
|
||||
- 1.22.3
|
||||
- 1.21.9
|
||||
- 1.22.2
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.78.0
|
||||
- Rust 1.78.0
|
||||
- Rustdoc 1.78.0
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.77.1
|
||||
- Rust 1.77.1
|
||||
- Rustdoc 1.77.1
|
||||
- Rustup 1.27.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.78
|
||||
- Clippy 0.1.77
|
||||
- Rustfmt 1.7.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.2
|
||||
- PowerShell 7.4.1
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 12.0.0
|
||||
- Az: 11.5.0
|
||||
- Pester: 5.5.0
|
||||
- PSScriptAnalyzer: 1.22.0
|
||||
|
||||
### Xcode
|
||||
| Version | Build | Path |
|
||||
| ---------------- | ------- | ------------------------------ |
|
||||
| 15.4 | 15F31d | /Applications/Xcode_15.4.app |
|
||||
| 15.3 | 15E204a | /Applications/Xcode_15.3.app |
|
||||
| 15.2 | 15C500b | /Applications/Xcode_15.2.app |
|
||||
| 15.1 | 15C65 | /Applications/Xcode_15.1.app |
|
||||
@@ -152,43 +149,34 @@
|
||||
| macOS 14.0 | macosx14.0 | 15.0.1 |
|
||||
| macOS 14.2 | macosx14.2 | 15.1, 15.2 |
|
||||
| macOS 14.4 | macosx14.4 | 15.3 |
|
||||
| macOS 14.5 | macosx14.5 | 15.4 |
|
||||
| iOS 16.4 | iphoneos16.4 | 14.3.1 |
|
||||
| iOS 17.0 | iphoneos17.0 | 15.0.1 |
|
||||
| iOS 17.2 | iphoneos17.2 | 15.1, 15.2 |
|
||||
| iOS 17.4 | iphoneos17.4 | 15.3 |
|
||||
| iOS 17.5 | iphoneos17.5 | 15.4 |
|
||||
| Simulator - iOS 16.4 | iphonesimulator16.4 | 14.3.1 |
|
||||
| Simulator - iOS 17.0 | iphonesimulator17.0 | 15.0.1 |
|
||||
| Simulator - iOS 17.2 | iphonesimulator17.2 | 15.1, 15.2 |
|
||||
| Simulator - iOS 17.4 | iphonesimulator17.4 | 15.3 |
|
||||
| Simulator - iOS 17.5 | iphonesimulator17.5 | 15.4 |
|
||||
| tvOS 16.4 | appletvos16.4 | 14.3.1 |
|
||||
| tvOS 17.0 | appletvos17.0 | 15.0.1 |
|
||||
| tvOS 17.2 | appletvos17.2 | 15.1, 15.2 |
|
||||
| tvOS 17.4 | appletvos17.4 | 15.3 |
|
||||
| tvOS 17.5 | appletvos17.5 | 15.4 |
|
||||
| Simulator - tvOS 16.4 | appletvsimulator16.4 | 14.3.1 |
|
||||
| Simulator - tvOS 17.0 | appletvsimulator17.0 | 15.0.1 |
|
||||
| Simulator - tvOS 17.2 | appletvsimulator17.2 | 15.1, 15.2 |
|
||||
| Simulator - tvOS 17.4 | appletvsimulator17.4 | 15.3 |
|
||||
| Simulator - tvOS 17.5 | appletvsimulator17.5 | 15.4 |
|
||||
| watchOS 9.4 | watchos9.4 | 14.3.1 |
|
||||
| watchOS 10.0 | watchos10.0 | 15.0.1 |
|
||||
| watchOS 10.2 | watchos10.2 | 15.1, 15.2 |
|
||||
| watchOS 10.4 | watchos10.4 | 15.3 |
|
||||
| watchOS 10.5 | watchos10.5 | 15.4 |
|
||||
| Simulator - watchOS 9.4 | watchsimulator9.4 | 14.3.1 |
|
||||
| Simulator - watchOS 10.0 | watchsimulator10.0 | 15.0.1 |
|
||||
| Simulator - watchOS 10.2 | watchsimulator10.2 | 15.1, 15.2 |
|
||||
| Simulator - watchOS 10.4 | watchsimulator10.4 | 15.3 |
|
||||
| Simulator - watchOS 10.5 | watchsimulator10.5 | 15.4 |
|
||||
| visionOS 1.0 | xros1.0 | 15.2 |
|
||||
| Simulator - visionOS 1.0 | xrsimulator1.0 | 15.2 |
|
||||
| Simulator - visionOS 1.1 | xrsimulator1.1 | 15.3 |
|
||||
| visionOS 1.0 | xros1.0 | 15.2 |
|
||||
| visionOS 1.1 | xros1.1 | 15.3 |
|
||||
| Simulator - visionOS 1.2 | xrsimulator1.2 | 15.4 |
|
||||
| visionOS 1.2 | xros1.2 | 15.4 |
|
||||
| Simulator - visionOS 1.1 | xrsimulator1.1 | 15.3 |
|
||||
| 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 |
|
||||
@@ -196,50 +184,45 @@
|
||||
| DriverKit 23.0 | driverkit23.0 | 15.0.1 |
|
||||
| DriverKit 23.2 | driverkit23.2 | 15.1, 15.2 |
|
||||
| DriverKit 23.4 | driverkit23.4 | 15.3 |
|
||||
| DriverKit 23.5 | driverkit23.5 | 15.4 |
|
||||
|
||||
#### Installed Simulators
|
||||
| OS | Xcode Version | Simulators |
|
||||
| ------------ | ------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| iOS 16.4 | 14.3.1 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 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.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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) |
|
||||
| tvOS 16.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.2 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.5 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| watchOS 9.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Ultra (49mm) |
|
||||
| watchOS 10.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.2 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.5 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| visionOS 1.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple Vision Pro |
|
||||
| visionOS 1.1 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple Vision Pro |
|
||||
| visionOS 1.2 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3<br>15.4 | Apple Vision Pro |
|
||||
| OS | Xcode Version | Simulators |
|
||||
| ------------ | ---------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| iOS 16.4 | 14.3.1 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 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.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | iPhone 14<br>iPhone 14 Plus<br>iPhone 14 Pro<br>iPhone 14 Pro Max<br>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) |
|
||||
| tvOS 16.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.2 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| watchOS 9.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | 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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Ultra (49mm) |
|
||||
| watchOS 10.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | 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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.2 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | 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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.4 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | 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 8 (41mm)<br>Apple Watch Series 8 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra (49mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| visionOS 1.0 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | Apple Vision Pro |
|
||||
| visionOS 1.1 | 14.3.1<br>15.0.1<br>15.1<br>15.2<br>15.3 | Apple Vision Pro |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 34.2.14 |
|
||||
| Android Emulator | 34.1.20 |
|
||||
| Android SDK Build-tools | 34.0.0<br>33.0.2 33.0.3 |
|
||||
| Android SDK Platforms | android-34-ext8 (rev 1)<br>android-34-ext11 (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 Platforms | android-34-ext8 (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.1 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.22.1 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653<br>26.3.11579264 (default) |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653<br>26.2.11394342 (default) |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------------- | --------------------------------------------------- |
|
||||
| ANDROID_HOME | /Users/runner/Library/Android/sdk |
|
||||
| ANDROID_NDK | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_HOME | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_ROOT | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_HOME | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_ROOT | /Users/runner/Library/Android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_SDK_ROOT | /Users/runner/Library/Android/sdk |
|
||||
|
||||
@@ -103,6 +103,3 @@ if [[ ! -d "/usr/local/bin" ]];then
|
||||
fi
|
||||
chmod +x $HOME/utils/invoke-tests.sh
|
||||
sudo ln -s $HOME/utils/invoke-tests.sh /usr/local/bin/invoke_tests
|
||||
|
||||
# Revert to the old behaviour and avoid the Git LFS problems (https://github.blog/2024-05-14-securing-git-addressing-5-new-vulnerabilities/)
|
||||
echo "export GIT_CLONE_PROTECTION_ACTIVE=false" >> $HOME/.bashrc
|
||||
|
||||
@@ -21,7 +21,7 @@ else
|
||||
fi
|
||||
release_label="macOS-${label_version}"
|
||||
|
||||
if is_Ventura || is_Sonoma || is_Monterey; then
|
||||
if is_Ventura || is_Sonoma; then
|
||||
software_url="https://github.com/actions/runner-images/blob/${image_label}/${image_version}/images/macos/${image_label}-Readme.md"
|
||||
releaseUrl="https://github.com/actions/runner-images/releases/tag/${image_label}%2F${image_version}"
|
||||
else
|
||||
|
||||
@@ -22,17 +22,17 @@ while [[ $retry -gt 0 ]]; do
|
||||
fi
|
||||
sleep 30
|
||||
done
|
||||
IFS=',' read -r -a windowslist <<< "$openwindows"
|
||||
IFS=',' read -r -a windowslist <<< $openwindows
|
||||
|
||||
if [[ -n ${openwindows} ]]; then
|
||||
echo "Found opened window:"
|
||||
fi
|
||||
|
||||
for key in ${!windowslist[@]}; do
|
||||
if [[ ${windowslist[$key]} =~ "NotificationCenter" ]]; then
|
||||
echo "[Warning] ${windowslist[$key]}"
|
||||
for window in ${windowslist[@]}; do
|
||||
if [[ $window =~ "NotificationCenter" ]]; then
|
||||
echo "[Warning] $window"
|
||||
else
|
||||
echo " - ${windowslist[$key]}" | xargs
|
||||
echo " - ${window}" | xargs
|
||||
scripterror=true
|
||||
fi
|
||||
done
|
||||
|
||||
@@ -44,7 +44,7 @@ echo "Installing pipx"
|
||||
|
||||
if is_Arm64; then
|
||||
export PIPX_BIN_DIR="$HOME/.local/bin"
|
||||
export PIPX_HOME="$HOME/.local/pipx"
|
||||
export PIPX_HOME="$HOME/Library/Application\ Support/pipx"
|
||||
else
|
||||
export PIPX_BIN_DIR=/usr/local/opt/pipx_bin
|
||||
export PIPX_HOME=/usr/local/opt/pipx
|
||||
|
||||
@@ -12,13 +12,6 @@ if is_BigSur; then
|
||||
COMMIT=d1d5743344227fe6e3c37cfba19f0cfe15a9448a
|
||||
FORMULA_URL="https://raw.githubusercontent.com/Homebrew/homebrew-core/$COMMIT/Formula/swiftlint.rb"
|
||||
|
||||
curl -fsSL $FORMULA_URL > $(find $(brew --repository) -name swiftlint.rb)
|
||||
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_FROM_API=1 brew install swiftlint
|
||||
elif is_Monterey; then
|
||||
# SwiftLint now requires Xcode 15.3 or higher to build https://github.com/realm/SwiftLint/releases/tag/0.55.1
|
||||
COMMIT=d91dabd087cb0b906c92a825df9e5e5e1a4f59f8
|
||||
FORMULA_URL="https://raw.githubusercontent.com/Homebrew/homebrew-core/$COMMIT/Formula/s/swiftlint.rb"
|
||||
|
||||
curl -fsSL $FORMULA_URL > $(find $(brew --repository) -name swiftlint.rb)
|
||||
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_FROM_API=1 brew install swiftlint
|
||||
else
|
||||
|
||||
@@ -9,7 +9,4 @@ Describe "Git" {
|
||||
It "git lfs is installed" -Skip:($os.IsBigSur) {
|
||||
"git lfs version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
It "GIT_CLONE_PROTECTION_ACTIVE environment variable should be equal false" {
|
||||
$env:GIT_CLONE_PROTECTION_ACTIVE | Should -BeExactly false
|
||||
}
|
||||
}
|
||||
|
||||
@@ -134,8 +134,6 @@
|
||||
},
|
||||
"arm64": {
|
||||
"versions": [
|
||||
"3.9.*",
|
||||
"3.10.*",
|
||||
"3.11.*",
|
||||
"3.12.*"
|
||||
]
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
"default": "15.0.1",
|
||||
"x64": {
|
||||
"versions": [
|
||||
{ "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"},
|
||||
{ "link": "15.2", "version": "15.2.0+15C500b", "install_runtimes": "true", "sha256": "04E93680C6DDBEC84666531BE412DE778AFC8EAC6AB2037F4C2BE7290818B59B"},
|
||||
{ "link": "15.1", "version": "15.1.0+15C65", "install_runtimes": "true", "sha256": "857D8DB537BAC82BF99DE0E1D3895D214D4D02101C1340CEF3DAF6E821BA1D05"},
|
||||
@@ -13,7 +12,6 @@
|
||||
},
|
||||
"arm64":{
|
||||
"versions": [
|
||||
{ "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"},
|
||||
{ "link": "15.2", "version": "15.2.0+15C500b", "install_runtimes": "true", "sha256": "04E93680C6DDBEC84666531BE412DE778AFC8EAC6AB2037F4C2BE7290818B59B"},
|
||||
{ "link": "15.1", "version": "15.1.0+15C65", "install_runtimes": "true", "sha256": "857D8DB537BAC82BF99DE0E1D3895D214D4D02101C1340CEF3DAF6E821BA1D05"},
|
||||
@@ -125,16 +123,12 @@
|
||||
"arch": {
|
||||
"x64": {
|
||||
"versions": [
|
||||
"3.9.*",
|
||||
"3.10.*",
|
||||
"3.11.*",
|
||||
"3.12.*"
|
||||
]
|
||||
},
|
||||
"arm64": {
|
||||
"versions": [
|
||||
"3.9.*",
|
||||
"3.10.*",
|
||||
"3.11.*",
|
||||
"3.12.*"
|
||||
]
|
||||
|
||||
@@ -1,12 +1,7 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [Ubuntu 24.04 is now available](https://github.com/actions/runner-images/issues/9848) |
|
||||
| [[Ubuntu, Windows] Docker Compose v1 will be removed from images on July, 9](https://github.com/actions/runner-images/issues/9692) |
|
||||
***
|
||||
# Ubuntu 20.04
|
||||
- OS Version: 20.04.6 LTS
|
||||
- Kernel Version: 5.15.0-1064-azure
|
||||
- Image Version: 20240516.1.0
|
||||
- Kernel Version: 5.15.0-1059-azure
|
||||
- Image Version: 20240407.1.0
|
||||
- Systemd version: 245.4-4ubuntu3.23
|
||||
|
||||
## Installed Software
|
||||
@@ -18,14 +13,14 @@
|
||||
- Clang-tidy: 10.0.0, 11.0.0, 12.0.0
|
||||
- Dash 0.5.10.2-6
|
||||
- Erlang 25.3 (Eshell 13.2)
|
||||
- Erlang rebar3 3.23.0
|
||||
- GNU C++: 10.5.0
|
||||
- GNU Fortran: 10.5.0
|
||||
- Julia 1.10.3
|
||||
- Kotlin 1.9.24-release-822
|
||||
- Erlang rebar3 3.22.1
|
||||
- GNU C++: 9.4.0, 10.5.0
|
||||
- GNU Fortran: 9.4.0, 10.5.0
|
||||
- Julia 1.10.2
|
||||
- Kotlin 1.9.23-release-779
|
||||
- Mono 6.12.0.200
|
||||
- MSBuild 16.10.1.31701 (Mono 6.12.0.200)
|
||||
- Node.js 18.20.2
|
||||
- Node.js 18.20.1
|
||||
- Perl 5.30.0
|
||||
- Python 3.8.10
|
||||
- Ruby 2.7.0p0
|
||||
@@ -33,16 +28,16 @@
|
||||
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.14.4
|
||||
- Homebrew 4.3.0
|
||||
- Miniconda 24.3.0
|
||||
- Helm 3.14.3
|
||||
- Homebrew 4.2.16
|
||||
- Miniconda 24.1.2
|
||||
- Npm 10.5.0
|
||||
- NuGet 6.6.1.2
|
||||
- Pip 20.0.2
|
||||
- Pip3 20.0.2
|
||||
- Pipx 1.5.0
|
||||
- RubyGems 3.1.2
|
||||
- Vcpkg (build from commit 66a252f70)
|
||||
- Vcpkg (build from commit 5fa0f075e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -62,84 +57,84 @@ to accomplish this.
|
||||
### Project Management
|
||||
- Ant 1.10.7
|
||||
- Gradle 8.7
|
||||
- Lerna 8.1.3
|
||||
- Lerna 8.1.2
|
||||
- Maven 3.8.8
|
||||
- Sbt 1.10.0
|
||||
- Sbt 1.9.9
|
||||
|
||||
### Tools
|
||||
- Ansible 2.13.13
|
||||
- apt-fast 1.10.0
|
||||
- AzCopy 10.24.0 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 7.1.2
|
||||
- Bazel 7.1.1
|
||||
- Bazelisk 1.19.0
|
||||
- Bicep 0.27.1
|
||||
- Bicep 0.26.54
|
||||
- Buildah 1.22.3
|
||||
- CMake 3.29.3
|
||||
- CodeQL Action Bundle 2.17.2
|
||||
- Docker Amazon ECR Credential Helper 0.8.0
|
||||
- CMake 3.29.1
|
||||
- CodeQL Action Bundle 2.17.0
|
||||
- Docker Amazon ECR Credential Helper 0.7.1
|
||||
- Docker Compose v1 1.29.2
|
||||
- Docker Compose v2 2.23.3
|
||||
- Docker-Buildx 0.14.0
|
||||
- Docker-Buildx 0.13.1
|
||||
- Docker Client 24.0.9
|
||||
- Docker Server 24.0.9
|
||||
- Fastlane 2.220.0
|
||||
- Git 2.45.1
|
||||
- Git 2.43.2
|
||||
- Git LFS 3.5.1
|
||||
- Git-ftp 1.6.0
|
||||
- Haveged 1.9.1
|
||||
- Heroku 8.11.5
|
||||
- Heroku 8.11.1
|
||||
- HHVM (HipHop VM) 4.172.1
|
||||
- jq 1.6
|
||||
- Kind 0.23.0
|
||||
- Kubectl 1.30.1
|
||||
- Kind 0.22.0
|
||||
- Kubectl 1.29.3
|
||||
- Kustomize 5.4.1
|
||||
- Leiningen 2.11.2
|
||||
- MediaInfo 19.09
|
||||
- Mercurial 5.3.1
|
||||
- Minikube 1.33.1
|
||||
- n 9.2.3
|
||||
- Minikube 1.32.0
|
||||
- n 9.2.1
|
||||
- Newman 6.1.2
|
||||
- nvm 0.39.7
|
||||
- OpenSSL 1.1.1f-1ubuntu2.22
|
||||
- Packer 1.10.3
|
||||
- Packer 1.10.2
|
||||
- Parcel 2.12.0
|
||||
- PhantomJS 2.1.1 2.1.1
|
||||
- Podman 3.4.2
|
||||
- Pulumi 3.116.1
|
||||
- R 4.4.0
|
||||
- Pulumi 3.112.0
|
||||
- R 4.3.3
|
||||
- Skopeo 1.5.0
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- SVN 1.13.0
|
||||
- Terraform 1.8.3
|
||||
- Terraform 1.7.5
|
||||
- yamllint 1.35.1
|
||||
- yq 4.44.1
|
||||
- yq 4.43.1
|
||||
- zstd 1.5.6
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.174
|
||||
- AWS CLI 2.15.51
|
||||
- AWS CLI 2.15.36
|
||||
- AWS CLI Session Manager Plugin 1.2.553.0
|
||||
- AWS SAM CLI 1.116.0
|
||||
- Azure CLI 2.60.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- GitHub CLI 2.49.2
|
||||
- Google Cloud CLI 476.0.0
|
||||
- Netlify CLI 17.23.5
|
||||
- OpenShift CLI 4.15.13
|
||||
- AWS SAM CLI 1.114.0
|
||||
- Azure CLI 2.59.0
|
||||
- Azure CLI (azure-devops) 1.0.0
|
||||
- GitHub CLI 2.47.0
|
||||
- Google Cloud CLI 471.0.0
|
||||
- Netlify CLI 17.21.2
|
||||
- OpenShift CLI 4.15.6
|
||||
- ORAS CLI 1.1.0
|
||||
- Vercel CLI 34.2.0
|
||||
- Vercel CLI 33.7.0
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| ------------------- | -------------------- |
|
||||
| 8.0.412+8 | JAVA_HOME_8_X64 |
|
||||
| 11.0.23+9 (default) | JAVA_HOME_11_X64 |
|
||||
| 17.0.11+9 | JAVA_HOME_17_X64 |
|
||||
| 21.0.3+9 | JAVA_HOME_21_X64 |
|
||||
| 8.0.402+6 | JAVA_HOME_8_X64 |
|
||||
| 11.0.22+7 (default) | JAVA_HOME_11_X64 |
|
||||
| 17.0.10+7 | JAVA_HOME_17_X64 |
|
||||
| 21.0.2+13 | JAVA_HOME_21_X64 |
|
||||
|
||||
### PHP Tools
|
||||
- PHP: 7.4.33, 8.0.30, 8.1.28, 8.2.19, 8.3.7
|
||||
- Composer 2.7.6
|
||||
- PHP: 7.4.33, 8.0.30, 8.1.27, 8.2.17, 8.3.4
|
||||
- Composer 2.7.2
|
||||
- PHPUnit 8.5.38
|
||||
```
|
||||
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
@@ -147,32 +142,32 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
|
||||
### Haskell Tools
|
||||
- Cabal 3.10.3.0
|
||||
- GHC 9.10.1
|
||||
- GHC 9.8.2
|
||||
- GHCup 0.1.22.0
|
||||
- Stack 2.15.7
|
||||
- Stack 2.15.5
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.78.0
|
||||
- Rust 1.78.0
|
||||
- Rustdoc 1.78.0
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.77.1
|
||||
- Rust 1.77.1
|
||||
- Rustdoc 1.77.1
|
||||
- Rustup 1.27.0
|
||||
|
||||
#### Packages
|
||||
- Bindgen 0.69.4
|
||||
- Cargo audit 0.20.0
|
||||
- Cargo clippy 0.1.78
|
||||
- Cargo clippy 0.1.77
|
||||
- Cargo outdated 0.15.0
|
||||
- Cbindgen 0.26.0
|
||||
- Rustfmt 1.7.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 125.0.6422.60
|
||||
- ChromeDriver 125.0.6422.60
|
||||
- Chromium 125.0.6422.0
|
||||
- Microsoft Edge 124.0.2478.105
|
||||
- Microsoft Edge WebDriver 124.0.2478.105
|
||||
- Selenium server 4.21.0
|
||||
- Mozilla Firefox 126.0
|
||||
- Google Chrome 123.0.6312.105
|
||||
- ChromeDriver 123.0.6312.105
|
||||
- Chromium 123.0.6312.0
|
||||
- Microsoft Edge 123.0.2420.81
|
||||
- Microsoft Edge WebDriver 123.0.2420.81
|
||||
- Selenium server 4.19.1
|
||||
- Mozilla Firefox 124.0.2
|
||||
- Geckodriver 0.34.0
|
||||
|
||||
#### Environment variables
|
||||
@@ -184,7 +179,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.422, 7.0.409, 8.0.300
|
||||
- .NET Core SDK: 6.0.420, 7.0.407, 8.0.203
|
||||
- nbgv 3.6.133+2d32d93cb1
|
||||
|
||||
### Databases
|
||||
@@ -192,7 +187,7 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
- sqlite3 3.31.1
|
||||
|
||||
#### PostgreSQL
|
||||
- PostgreSQL 14.12
|
||||
- PostgreSQL 14.11
|
||||
```
|
||||
User: postgres
|
||||
PostgreSQL service is disabled by default.
|
||||
@@ -216,13 +211,13 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
|
||||
#### Go
|
||||
- 1.20.14
|
||||
- 1.21.10
|
||||
- 1.22.3
|
||||
- 1.21.9
|
||||
- 1.22.2
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
- 18.20.2
|
||||
- 20.13.1
|
||||
- 18.20.1
|
||||
- 20.12.1
|
||||
|
||||
#### Python
|
||||
- 3.7.17
|
||||
@@ -230,19 +225,19 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
- 3.9.19
|
||||
- 3.10.14
|
||||
- 3.11.9
|
||||
- 3.12.3
|
||||
- 3.12.2
|
||||
|
||||
#### PyPy
|
||||
- 2.7.18 [PyPy 7.3.16]
|
||||
- 2.7.18 [PyPy 7.3.15]
|
||||
- 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.14 [PyPy 7.3.16]
|
||||
- 3.9.18 [PyPy 7.3.15]
|
||||
- 3.10.13 [PyPy 7.3.15]
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.5
|
||||
- 3.0.6
|
||||
- 3.1.4
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.1
|
||||
@@ -250,7 +245,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
#### PowerShell Modules
|
||||
- Az: 11.3.1
|
||||
- MarkdownPS: 1.9
|
||||
- Microsoft.Graph: 2.19.0
|
||||
- Microsoft.Graph: 2.16.0
|
||||
- Pester: 5.5.0
|
||||
- PSScriptAnalyzer: 1.22.0
|
||||
|
||||
@@ -266,12 +261,12 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 9.0 |
|
||||
| Android SDK Build-tools | 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-34-ext8 (rev 1)<br>android-34-ext11 (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 Platforms | android-34-ext8 (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.10.2<br>3.18.1<br>3.22.1 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653 (default)<br>26.3.11579264 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653 (default)<br>26.2.11394342 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -279,7 +274,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| ANDROID_HOME | /usr/local/lib/android/sdk |
|
||||
| ANDROID_NDK | /usr/local/lib/android/sdk/ndk/25.2.9519653 |
|
||||
| ANDROID_NDK_HOME | /usr/local/lib/android/sdk/ndk/25.2.9519653 |
|
||||
| ANDROID_NDK_LATEST_HOME | /usr/local/lib/android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_LATEST_HOME | /usr/local/lib/android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_ROOT | /usr/local/lib/android/sdk/ndk/25.2.9519653 |
|
||||
| ANDROID_SDK_ROOT | /usr/local/lib/android/sdk |
|
||||
|
||||
@@ -289,17 +284,17 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| alpine:3.16 | sha256:452e7292acee0ee16c332324d7de05fa2c99f9994ecc9f0779c602916a672ae4 | 2024-01-27 |
|
||||
| alpine:3.17 | sha256:53cf9478b76f4c8fae126acbdfb79bed6e69e628faff572ebe4a029d3d247d98 | 2024-01-27 |
|
||||
| alpine:3.18 | sha256:11e21d7b981a59554b3f822c49f6e9f57b6068bb74f49c4cd5cc4c663c7e5160 | 2024-01-27 |
|
||||
| debian:10 | sha256:6e7bd55a5705914837aad8db01b349f4617510c11e47ccae8e87f6f14e489626 | 2024-05-14 |
|
||||
| debian:11 | sha256:2c7a92a41cb814c00e7d455b2bc0c90ccdb9a4ced2ffdc10e562c7a84a186032 | 2024-05-14 |
|
||||
| debian:10 | sha256:f6b3b7c7b049c2c7d0f19ae988b4eac64fd8e127fa891c9de1d3cf3f8c33cad4 | 2024-03-12 |
|
||||
| debian:11 | sha256:5a87974e73c64b3fb161d444a84bdd47c0e6b6058eacaeea64342e7cbce1f04d | 2024-03-12 |
|
||||
| debian:9 | sha256:c5c5200ff1e9c73ffbf188b4a67eb1c91531b644856b4aefe86a58d2f0cb05be | 2022-06-23 |
|
||||
| moby/buildkit:latest | sha256:9194b5ec1be368f41c516df7f93f7f540630ea06136056b2ffebb62226ed4ad6 | 2024-04-25 |
|
||||
| moby/buildkit:latest | sha256:00d2c6b8f39ae515e0eadd74f39e71a5efdc94321c9b919692a2aa32deef2bb1 | 2024-03-18 |
|
||||
| node:16 | sha256:f77a1aef2da8d83e45ec990f45df50f1a286c5fe8bbfb8c6e4246c6389705c0b | 2023-09-07 |
|
||||
| node:16-alpine | sha256:a1f9d027912b58a7c75be7716c97cfbc6d3099f3a97ed84aa490be9dee20e787 | 2023-08-10 |
|
||||
| node:18 | sha256:5bac3a1edff13e76586b8eaef1d411fcd80e4f18cce5bc40ea6993245e0721ec | 2024-05-14 |
|
||||
| node:18-alpine | sha256:4837c2ac8998cf172f5892fb45f229c328e4824c43c8506f8ba9c7996d702430 | 2024-04-23 |
|
||||
| node:20 | sha256:d6925dc84f8c0d1c1f8df4ea6a9a54e57d430241cb734b1b0c45ed6d26e8e9c0 | 2024-05-14 |
|
||||
| node:20-alpine | sha256:291e84d956f1aff38454bbd3da38941461ad569a185c20aa289f71f37ea08e23 | 2024-05-09 |
|
||||
| ubuntu:20.04 | sha256:874aca52f79ae5f8258faff03e10ce99ae836f6e7d2df6ecd3da5c1cad3a912b | 2024-04-27 |
|
||||
| node:18 | sha256:be6b6dc2a62591408c3f0475de2e3ae34e22879fe0f5b4c3733ecfadffd62e3b | 2024-04-04 |
|
||||
| node:18-alpine | sha256:6d9d5269cbe4088803e9ef81da62ac481c063b60cadbe8e628bfcbb12296d901 | 2024-04-04 |
|
||||
| node:20 | sha256:8a03de2385cb16c4d76aac30bf86ab05f55f1754a5402dc9039916e8043f019a | 2024-04-04 |
|
||||
| node:20-alpine | sha256:7e227295e96f5b00aa79555ae166f50610940d888fc2e321cf36304cbd17d7d6 | 2024-04-04 |
|
||||
| ubuntu:20.04 | sha256:80ef4a44043dec4490506e6cc4289eeda2d106a70148b74b5ae91ee670e9c35d | 2024-02-16 |
|
||||
|
||||
### Installed apt packages
|
||||
| Name | Version |
|
||||
@@ -335,7 +330,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| lib32z1 | 1:1.2.11.dfsg-2ubuntu1.5 |
|
||||
| libc++-dev | 1:10.0-50\~exp1 |
|
||||
| libc++abi-dev | 1:10.0-50\~exp1 |
|
||||
| libc6-dev | 2.31-0ubuntu9.15 |
|
||||
| libc6-dev | 2.31-0ubuntu9.14 |
|
||||
| libcurl4 | 7.68.0-1ubuntu2.22 |
|
||||
| libgbm-dev | 21.2.6-0ubuntu0.1\~20.04.2 |
|
||||
| libgconf-2-4 | 3.2.6-6ubuntu1 |
|
||||
@@ -351,7 +346,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| libxkbfile-dev | 1:1.1.0-1 |
|
||||
| libxss1 | 1:1.2.3-1 |
|
||||
| libyaml-dev | 0.2.2-1 |
|
||||
| locales | 2.31-0ubuntu9.15 |
|
||||
| locales | 2.31-0ubuntu9.14 |
|
||||
| m4 | 1.4.18-4 |
|
||||
| make | 4.2.1-1.2 |
|
||||
| mediainfo | 19.09-1build1 |
|
||||
@@ -388,8 +383,7 @@ 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 |
|
||||
| xorriso | 1.5.2-1 |
|
||||
| xvfb | 2:1.20.13-1ubuntu1\~20.04.17 |
|
||||
| xvfb | 2:1.20.13-1ubuntu1\~20.04.16 |
|
||||
| xz-utils | 5.2.4-1ubuntu1.1 |
|
||||
| zip | 3.0-11build1 |
|
||||
| zsync | 0.6.2-3ubuntu1 |
|
||||
|
||||
|
||||
@@ -1,12 +1,7 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [Ubuntu 24.04 is now available](https://github.com/actions/runner-images/issues/9848) |
|
||||
| [[Ubuntu, Windows] Docker Compose v1 will be removed from images on July, 9](https://github.com/actions/runner-images/issues/9692) |
|
||||
***
|
||||
# Ubuntu 22.04
|
||||
- OS Version: 22.04.4 LTS
|
||||
- Kernel Version: 6.5.0-1021-azure
|
||||
- Image Version: 20240516.1.0
|
||||
- Kernel Version: 6.5.0-1017-azure
|
||||
- Image Version: 20240407.1.0
|
||||
- Systemd version: 249.11-0ubuntu3.12
|
||||
|
||||
## Installed Software
|
||||
@@ -17,13 +12,13 @@
|
||||
- Clang-format: 13.0.1, 14.0.0, 15.0.7
|
||||
- Clang-tidy: 13.0.1, 14.0.0, 15.0.7
|
||||
- Dash 0.5.11+git20210903+057cd650a4ed-3build1
|
||||
- GNU C++: 10.5.0, 11.4.0, 12.3.0
|
||||
- GNU Fortran: 10.5.0, 11.4.0, 12.3.0
|
||||
- Julia 1.10.3
|
||||
- Kotlin 1.9.24-release-822
|
||||
- GNU C++: 9.5.0, 10.5.0, 11.4.0, 12.3.0, 13.1.0
|
||||
- GNU Fortran: 9.5.0, 10.5.0, 11.4.0, 12.3.0, 13.1.0
|
||||
- Julia 1.10.2
|
||||
- Kotlin 1.9.23-release-779
|
||||
- Mono 6.12.0.200
|
||||
- MSBuild 16.10.1.31701 (Mono 6.12.0.200)
|
||||
- Node.js 18.20.2
|
||||
- Node.js 18.20.1
|
||||
- Perl 5.34.0
|
||||
- Python 3.10.12
|
||||
- Ruby 3.0.2p107
|
||||
@@ -31,16 +26,16 @@
|
||||
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.14.4
|
||||
- Homebrew 4.3.0
|
||||
- Miniconda 24.3.0
|
||||
- Helm 3.14.3
|
||||
- Homebrew 4.2.16
|
||||
- Miniconda 24.1.2
|
||||
- Npm 10.5.0
|
||||
- NuGet 6.6.1.2
|
||||
- Pip 22.0.2
|
||||
- Pip3 22.0.2
|
||||
- Pipx 1.5.0
|
||||
- RubyGems 3.3.5
|
||||
- Vcpkg (build from commit 66a252f70)
|
||||
- Vcpkg (build from commit 5fa0f075e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -58,84 +53,81 @@ to accomplish this.
|
||||
```
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.12
|
||||
- Gradle 8.7
|
||||
- Lerna 8.1.3
|
||||
- Lerna 8.1.2
|
||||
- Maven 3.8.8
|
||||
- Sbt 1.10.0
|
||||
|
||||
### Tools
|
||||
- Ansible 2.16.6
|
||||
- Ansible 2.16.5
|
||||
- apt-fast 1.10.0
|
||||
- AzCopy 10.24.0 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 7.1.2
|
||||
- Bazel 7.1.1
|
||||
- Bazelisk 1.19.0
|
||||
- Bicep 0.27.1
|
||||
- Bicep 0.26.54
|
||||
- Buildah 1.23.1
|
||||
- CMake 3.29.3
|
||||
- CodeQL Action Bundle 2.17.2
|
||||
- Docker Amazon ECR Credential Helper 0.8.0
|
||||
- CMake 3.29.1
|
||||
- CodeQL Action Bundle 2.17.0
|
||||
- Docker Amazon ECR Credential Helper 0.7.1
|
||||
- Docker Compose v1 1.29.2
|
||||
- Docker Compose v2 2.23.3
|
||||
- Docker-Buildx 0.14.0
|
||||
- Docker-Buildx 0.13.1
|
||||
- Docker Client 24.0.9
|
||||
- Docker Server 24.0.9
|
||||
- Fastlane 2.220.0
|
||||
- Git 2.45.1
|
||||
- Git 2.43.2
|
||||
- Git LFS 3.5.1
|
||||
- Git-ftp 1.6.0
|
||||
- Haveged 1.9.14
|
||||
- Heroku 8.11.5
|
||||
- Heroku 8.11.1
|
||||
- jq 1.6
|
||||
- Kind 0.23.0
|
||||
- Kubectl 1.30.1
|
||||
- Kind 0.22.0
|
||||
- Kubectl 1.29.3
|
||||
- Kustomize 5.4.1
|
||||
- Leiningen 2.11.2
|
||||
- MediaInfo 21.09
|
||||
- Mercurial 6.1.1
|
||||
- Minikube 1.33.1
|
||||
- n 9.2.3
|
||||
- Minikube 1.32.0
|
||||
- n 9.2.1
|
||||
- Newman 6.1.2
|
||||
- nvm 0.39.7
|
||||
- OpenSSL 3.0.2-0ubuntu1.15
|
||||
- Packer 1.10.3
|
||||
- Packer 1.10.2
|
||||
- Parcel 2.12.0
|
||||
- Podman 3.4.4
|
||||
- Pulumi 3.116.1
|
||||
- R 4.4.0
|
||||
- Pulumi 3.112.0
|
||||
- R 4.3.3
|
||||
- Skopeo 1.4.1
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- SVN 1.14.1
|
||||
- Terraform 1.8.3
|
||||
- Terraform 1.7.5
|
||||
- yamllint 1.35.1
|
||||
- yq 4.44.1
|
||||
- yq 4.43.1
|
||||
- zstd 1.5.6
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.205
|
||||
- AWS CLI 2.15.51
|
||||
- Alibaba Cloud CLI 3.0.201
|
||||
- AWS CLI 2.15.36
|
||||
- AWS CLI Session Manager Plugin 1.2.553.0
|
||||
- AWS SAM CLI 1.116.0
|
||||
- Azure CLI 2.60.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- GitHub CLI 2.49.2
|
||||
- Google Cloud CLI 476.0.0
|
||||
- Netlify CLI 17.23.5
|
||||
- OpenShift CLI 4.15.13
|
||||
- AWS SAM CLI 1.114.0
|
||||
- Azure CLI 2.59.0
|
||||
- Azure CLI (azure-devops) 1.0.0
|
||||
- GitHub CLI 2.47.0
|
||||
- Google Cloud CLI 471.0.0
|
||||
- Netlify CLI 17.21.2
|
||||
- OpenShift CLI 4.15.6
|
||||
- ORAS CLI 1.1.0
|
||||
- Vercel CLI 34.2.0
|
||||
- Vercel CLI 33.7.0
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| ------------------- | -------------------- |
|
||||
| 8.0.412+8 | JAVA_HOME_8_X64 |
|
||||
| 11.0.23+9 (default) | JAVA_HOME_11_X64 |
|
||||
| 17.0.11+9 | JAVA_HOME_17_X64 |
|
||||
| 21.0.3+9 | JAVA_HOME_21_X64 |
|
||||
| 8.0.402+6 | JAVA_HOME_8_X64 |
|
||||
| 11.0.22+7 (default) | JAVA_HOME_11_X64 |
|
||||
| 17.0.10+7 | JAVA_HOME_17_X64 |
|
||||
| 21.0.2+13 | JAVA_HOME_21_X64 |
|
||||
|
||||
### PHP Tools
|
||||
- PHP: 8.1.2
|
||||
- Composer 2.7.6
|
||||
- Composer 2.7.2
|
||||
- PHPUnit 8.5.38
|
||||
```
|
||||
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
@@ -143,32 +135,32 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
|
||||
### Haskell Tools
|
||||
- Cabal 3.10.3.0
|
||||
- GHC 9.10.1
|
||||
- GHC 9.8.2
|
||||
- GHCup 0.1.22.0
|
||||
- Stack 2.15.7
|
||||
- Stack 2.15.5
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.78.0
|
||||
- Rust 1.78.0
|
||||
- Rustdoc 1.78.0
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.77.1
|
||||
- Rust 1.77.1
|
||||
- Rustdoc 1.77.1
|
||||
- Rustup 1.27.0
|
||||
|
||||
#### Packages
|
||||
- Bindgen 0.69.4
|
||||
- Cargo audit 0.20.0
|
||||
- Cargo clippy 0.1.78
|
||||
- Cargo clippy 0.1.77
|
||||
- Cargo outdated 0.15.0
|
||||
- Cbindgen 0.26.0
|
||||
- Rustfmt 1.7.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 125.0.6422.60
|
||||
- ChromeDriver 125.0.6422.60
|
||||
- Chromium 125.0.6422.0
|
||||
- Microsoft Edge 124.0.2478.105
|
||||
- Microsoft Edge WebDriver 124.0.2478.105
|
||||
- Selenium server 4.21.0
|
||||
- Mozilla Firefox 126.0
|
||||
- Google Chrome 123.0.6312.105
|
||||
- ChromeDriver 123.0.6312.105
|
||||
- Chromium 123.0.6312.0
|
||||
- Microsoft Edge 123.0.2420.81
|
||||
- Microsoft Edge WebDriver 123.0.2420.81
|
||||
- Selenium server 4.19.1
|
||||
- Mozilla Firefox 124.0.2
|
||||
- Geckodriver 0.34.0
|
||||
|
||||
#### Environment variables
|
||||
@@ -180,14 +172,14 @@ 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.422, 7.0.409, 8.0.300
|
||||
- .NET Core SDK: 6.0.420, 7.0.407, 8.0.203
|
||||
- nbgv 3.6.133+2d32d93cb1
|
||||
|
||||
### Databases
|
||||
- sqlite3 3.37.2
|
||||
|
||||
#### PostgreSQL
|
||||
- PostgreSQL 14.12
|
||||
- PostgreSQL 14.11
|
||||
```
|
||||
User: postgres
|
||||
PostgreSQL service is disabled by default.
|
||||
@@ -211,13 +203,13 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
|
||||
#### Go
|
||||
- 1.20.14
|
||||
- 1.21.10
|
||||
- 1.22.3
|
||||
- 1.21.9
|
||||
- 1.22.2
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
- 18.20.2
|
||||
- 20.13.1
|
||||
- 18.20.1
|
||||
- 20.12.1
|
||||
|
||||
#### Python
|
||||
- 3.7.17
|
||||
@@ -225,16 +217,16 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
- 3.9.19
|
||||
- 3.10.14
|
||||
- 3.11.9
|
||||
- 3.12.3
|
||||
- 3.12.2
|
||||
|
||||
#### PyPy
|
||||
- 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.16]
|
||||
- 3.9.18 [PyPy 7.3.15]
|
||||
- 3.10.13 [PyPy 7.3.15]
|
||||
|
||||
#### Ruby
|
||||
- 3.1.5
|
||||
- 3.1.4
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.1
|
||||
@@ -242,7 +234,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
#### PowerShell Modules
|
||||
- Az: 11.3.1
|
||||
- MarkdownPS: 1.9
|
||||
- Microsoft.Graph: 2.19.0
|
||||
- Microsoft.Graph: 2.16.0
|
||||
- Pester: 5.5.0
|
||||
- PSScriptAnalyzer: 1.22.0
|
||||
|
||||
@@ -257,12 +249,12 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 9.0 |
|
||||
| Android SDK Build-tools | 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-34-ext8 (rev 1)<br>android-34-ext11 (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 Platforms | android-34-ext8 (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.10.2<br>3.18.1<br>3.22.1 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653 (default)<br>26.3.11579264 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653 (default)<br>26.2.11394342 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -270,7 +262,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| ANDROID_HOME | /usr/local/lib/android/sdk |
|
||||
| ANDROID_NDK | /usr/local/lib/android/sdk/ndk/25.2.9519653 |
|
||||
| ANDROID_NDK_HOME | /usr/local/lib/android/sdk/ndk/25.2.9519653 |
|
||||
| ANDROID_NDK_LATEST_HOME | /usr/local/lib/android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_LATEST_HOME | /usr/local/lib/android/sdk/ndk/26.2.11394342 |
|
||||
| ANDROID_NDK_ROOT | /usr/local/lib/android/sdk/ndk/25.2.9519653 |
|
||||
| ANDROID_SDK_ROOT | /usr/local/lib/android/sdk |
|
||||
|
||||
@@ -280,17 +272,17 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| alpine:3.16 | sha256:452e7292acee0ee16c332324d7de05fa2c99f9994ecc9f0779c602916a672ae4 | 2024-01-27 |
|
||||
| alpine:3.17 | sha256:53cf9478b76f4c8fae126acbdfb79bed6e69e628faff572ebe4a029d3d247d98 | 2024-01-27 |
|
||||
| alpine:3.18 | sha256:11e21d7b981a59554b3f822c49f6e9f57b6068bb74f49c4cd5cc4c663c7e5160 | 2024-01-27 |
|
||||
| debian:10 | sha256:6e7bd55a5705914837aad8db01b349f4617510c11e47ccae8e87f6f14e489626 | 2024-05-14 |
|
||||
| debian:11 | sha256:2c7a92a41cb814c00e7d455b2bc0c90ccdb9a4ced2ffdc10e562c7a84a186032 | 2024-05-14 |
|
||||
| moby/buildkit:latest | sha256:9194b5ec1be368f41c516df7f93f7f540630ea06136056b2ffebb62226ed4ad6 | 2024-04-25 |
|
||||
| debian:10 | sha256:f6b3b7c7b049c2c7d0f19ae988b4eac64fd8e127fa891c9de1d3cf3f8c33cad4 | 2024-03-12 |
|
||||
| debian:11 | sha256:5a87974e73c64b3fb161d444a84bdd47c0e6b6058eacaeea64342e7cbce1f04d | 2024-03-12 |
|
||||
| moby/buildkit:latest | sha256:00d2c6b8f39ae515e0eadd74f39e71a5efdc94321c9b919692a2aa32deef2bb1 | 2024-03-18 |
|
||||
| node:16 | sha256:f77a1aef2da8d83e45ec990f45df50f1a286c5fe8bbfb8c6e4246c6389705c0b | 2023-09-07 |
|
||||
| node:16-alpine | sha256:a1f9d027912b58a7c75be7716c97cfbc6d3099f3a97ed84aa490be9dee20e787 | 2023-08-10 |
|
||||
| node:18 | sha256:5bac3a1edff13e76586b8eaef1d411fcd80e4f18cce5bc40ea6993245e0721ec | 2024-05-14 |
|
||||
| node:18-alpine | sha256:4837c2ac8998cf172f5892fb45f229c328e4824c43c8506f8ba9c7996d702430 | 2024-04-23 |
|
||||
| node:20 | sha256:d6925dc84f8c0d1c1f8df4ea6a9a54e57d430241cb734b1b0c45ed6d26e8e9c0 | 2024-05-14 |
|
||||
| node:20-alpine | sha256:291e84d956f1aff38454bbd3da38941461ad569a185c20aa289f71f37ea08e23 | 2024-05-09 |
|
||||
| ubuntu:20.04 | sha256:874aca52f79ae5f8258faff03e10ce99ae836f6e7d2df6ecd3da5c1cad3a912b | 2024-04-27 |
|
||||
| ubuntu:22.04 | sha256:a6d2b38300ce017add71440577d5b0a90460d0e57fd7aec21dd0d1b0761bbfb2 | 2024-04-27 |
|
||||
| node:18 | sha256:be6b6dc2a62591408c3f0475de2e3ae34e22879fe0f5b4c3733ecfadffd62e3b | 2024-04-04 |
|
||||
| node:18-alpine | sha256:6d9d5269cbe4088803e9ef81da62ac481c063b60cadbe8e628bfcbb12296d901 | 2024-04-04 |
|
||||
| node:20 | sha256:8a03de2385cb16c4d76aac30bf86ab05f55f1754a5402dc9039916e8043f019a | 2024-04-04 |
|
||||
| node:20-alpine | sha256:7e227295e96f5b00aa79555ae166f50610940d888fc2e321cf36304cbd17d7d6 | 2024-04-04 |
|
||||
| ubuntu:20.04 | sha256:80ef4a44043dec4490506e6cc4289eeda2d106a70148b74b5ae91ee670e9c35d | 2024-02-16 |
|
||||
| ubuntu:22.04 | sha256:77906da86b60585ce12215807090eb327e7386c8fafb5402369e421f44eff17e | 2024-02-27 |
|
||||
|
||||
### Installed apt packages
|
||||
| Name | Version |
|
||||
@@ -326,12 +318,12 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| lib32z1 | 1:1.2.11.dfsg-2ubuntu9.2 |
|
||||
| libc++-dev | 1:14.0-55\~exp2 |
|
||||
| libc++abi-dev | 1:14.0-55\~exp2 |
|
||||
| libc6-dev | 2.35-0ubuntu3.7 |
|
||||
| libc6-dev | 2.35-0ubuntu3.6 |
|
||||
| libcurl4 | 7.81.0-1ubuntu1.16 |
|
||||
| libgbm-dev | 23.2.1-1ubuntu3.1\~22.04.2 |
|
||||
| libgconf-2-4 | 3.2.6-7ubuntu2 |
|
||||
| libgsl-dev | 2.7.1+dfsg-3 |
|
||||
| libgtk-3-0 | 3.24.33-1ubuntu2.1 |
|
||||
| libgtk-3-0 | 3.24.33-1ubuntu2 |
|
||||
| libmagic-dev | 1:5.41-3ubuntu0.1 |
|
||||
| libmagickcore-dev | 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.3 |
|
||||
| libmagickwand-dev | 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.3 |
|
||||
@@ -343,7 +335,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| libxkbfile-dev | 1:1.1.0-1build3 |
|
||||
| libxss1 | 1:1.2.3-1build2 |
|
||||
| libyaml-dev | 0.2.2-1build2 |
|
||||
| locales | 2.35-0ubuntu3.7 |
|
||||
| locales | 2.35-0ubuntu3.6 |
|
||||
| lz4 | 1.9.3-2build2 |
|
||||
| m4 | 1.4.18-5ubuntu2 |
|
||||
| make | 4.3-4.1build1 |
|
||||
@@ -351,7 +343,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| mercurial | 6.1.1-1ubuntu1 |
|
||||
| net-tools | 1.60+git20181103.0eebece-1ubuntu5 |
|
||||
| netcat | 1.218-4ubuntu1 |
|
||||
| openssh-client | 1:8.9p1-3ubuntu0.7 |
|
||||
| openssh-client | 1:8.9p1-3ubuntu0.6 |
|
||||
| p7zip-full | 16.02+dfsg-8 |
|
||||
| p7zip-rar | 16.02-3build1 |
|
||||
| parallel | 20210822+ds-2 |
|
||||
@@ -366,7 +358,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| shellcheck | 0.8.0-2 |
|
||||
| sphinxsearch | 2.2.11-8 |
|
||||
| sqlite3 | 3.37.2-2ubuntu0.3 |
|
||||
| ssh | 1:8.9p1-3ubuntu0.7 |
|
||||
| ssh | 1:8.9p1-3ubuntu0.6 |
|
||||
| sshpass | 1.09-1 |
|
||||
| subversion | 1.14.1-3ubuntu0.22.04.1 |
|
||||
| sudo | 1.9.9-1ubuntu2.4 |
|
||||
@@ -381,8 +373,7 @@ 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 |
|
||||
| xorriso | 1.5.4-2 |
|
||||
| xvfb | 2:21.1.4-2ubuntu1.7\~22.04.10 |
|
||||
| xvfb | 2:21.1.4-2ubuntu1.7\~22.04.9 |
|
||||
| xz-utils | 5.2.5-2ubuntu1 |
|
||||
| zip | 3.0-12build2 |
|
||||
| zsync | 0.6.2-3ubuntu1 |
|
||||
|
||||
|
||||
@@ -1,306 +0,0 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [Ubuntu 24.04 is now available](https://github.com/actions/runner-images/issues/9848) |
|
||||
| [[Ubuntu, Windows] Docker Compose v1 will be removed from images on July, 9](https://github.com/actions/runner-images/issues/9692) |
|
||||
***
|
||||
# Ubuntu 24.04 LTS
|
||||
- OS Version: 24.04 LTS
|
||||
- Kernel Version: 6.8.0-1007-azure
|
||||
- Image Version: 20240516.4.0
|
||||
- Systemd version: 255.4-1ubuntu8
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- Bash 5.2.21(1)-release
|
||||
- Clang: 16.0.6, 17.0.6, 18.1.3
|
||||
- Clang-format: 16.0.6, 17.0.6, 18.1.3
|
||||
- Clang-tidy: 16.0.6, 17.0.6, 18.1.3
|
||||
- Dash 0.5.12-6ubuntu5
|
||||
- GNU C++: 12.3.0, 13.2.0, 14.0.1
|
||||
- GNU Fortran: 12.3.0, 13.2.0, 14.0.1
|
||||
- Julia 1.10.3
|
||||
- Node.js 20.13.1
|
||||
- Perl 5.38.2
|
||||
- Python 3.12.3
|
||||
- Ruby 3.2.3
|
||||
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.14.4
|
||||
- Homebrew 4.3.0
|
||||
- Miniconda 24.3.0
|
||||
- Npm 10.5.2
|
||||
- Pip 24.0
|
||||
- Pip3 24.0
|
||||
- Pipx 1.4.3
|
||||
- RubyGems 3.4.20
|
||||
- Vcpkg (build from commit 66a252f70)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------------- | ---------------------- |
|
||||
| CONDA | /usr/share/miniconda |
|
||||
| VCPKG_INSTALLATION_ROOT | /usr/local/share/vcpkg |
|
||||
|
||||
#### Homebrew note
|
||||
```
|
||||
Location: /home/linuxbrew
|
||||
Note: Homebrew is pre-installed on image but not added to PATH.
|
||||
run the eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" command
|
||||
to accomplish this.
|
||||
```
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.14
|
||||
- Gradle 8.7
|
||||
- Lerna 8.1.3
|
||||
- Maven 3.8.8
|
||||
|
||||
### Tools
|
||||
- Ansible 2.16.6
|
||||
- apt-fast 1.10.0
|
||||
- AzCopy 10.24.0 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 7.1.2
|
||||
- Bazelisk 1.19.0
|
||||
- Bicep 0.27.1
|
||||
- Buildah 1.33.7
|
||||
- CMake 3.29.3
|
||||
- CodeQL Action Bundle 2.17.2
|
||||
- Docker Amazon ECR Credential Helper 0.8.0
|
||||
- Docker Compose v2 2.27.0
|
||||
- Docker-Buildx 0.14.0
|
||||
- Docker Client 26.1.0
|
||||
- Docker Server 26.1.0
|
||||
- Fastlane 2.220.0
|
||||
- Git 2.45.1
|
||||
- Git LFS 3.5.1
|
||||
- Git-ftp 1.6.0
|
||||
- Haveged 1.9.14
|
||||
- jq 1.7
|
||||
- Kind 0.23.0
|
||||
- Kubectl 1.30.1
|
||||
- Kustomize 5.4.1
|
||||
- MediaInfo 24.01
|
||||
- Mercurial 6.7.2
|
||||
- Minikube 1.33.1
|
||||
- n 9.2.3
|
||||
- Newman 6.1.2
|
||||
- OpenSSL 3.0.13-0ubuntu3
|
||||
- Parcel 2.12.0
|
||||
- Podman 4.9.3
|
||||
- Pulumi 3.116.1
|
||||
- Skopeo 1.13.3
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- yamllint 1.35.1
|
||||
- yq 4.44.1
|
||||
- zstd 1.5.6
|
||||
|
||||
### CLI Tools
|
||||
- AWS CLI 2.15.51
|
||||
- AWS CLI Session Manager Plugin 1.2.553.0
|
||||
- AWS SAM CLI 1.116.0
|
||||
- Azure CLI 2.60.0
|
||||
- Azure CLI (azure-devops) 1.0.1
|
||||
- GitHub CLI 2.49.2
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| ------------------- | -------------------- |
|
||||
| 8.0.412+8 | JAVA_HOME_8_X64 |
|
||||
| 11.0.23+9 | JAVA_HOME_11_X64 |
|
||||
| 17.0.11+9 (default) | JAVA_HOME_17_X64 |
|
||||
| 21.0.3+9 | JAVA_HOME_21_X64 |
|
||||
|
||||
### PHP Tools
|
||||
- PHP: 8.3.6
|
||||
- Composer 2.7.6
|
||||
- PHPUnit 8.5.38
|
||||
```
|
||||
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
```
|
||||
|
||||
### Haskell Tools
|
||||
- Cabal 3.10.3.0
|
||||
- GHC 9.10.1
|
||||
- GHCup 0.1.22.0
|
||||
- Stack 2.15.7
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.78.0
|
||||
- Rust 1.78.0
|
||||
- Rustdoc 1.78.0
|
||||
- Rustup 1.27.1
|
||||
|
||||
#### Packages
|
||||
- Rustfmt 1.7.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 125.0.6422.60
|
||||
- ChromeDriver 125.0.6422.60
|
||||
- Chromium 125.0.6422.0
|
||||
- Selenium server 4.21.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------- | ------------------------------------- |
|
||||
| CHROMEWEBDRIVER | /usr/local/share/chromedriver-linux64 |
|
||||
| EDGEWEBDRIVER | |
|
||||
| GECKOWEBDRIVER | |
|
||||
| SELENIUM_JAR_PATH | /usr/share/java/selenium-server.jar |
|
||||
|
||||
### .NET Tools
|
||||
- .NET Core SDK: 8.0.300
|
||||
- nbgv 3.6.133+2d32d93cb1
|
||||
|
||||
### Databases
|
||||
- sqlite3 3.45.1
|
||||
|
||||
#### PostgreSQL
|
||||
- PostgreSQL 16.3
|
||||
```
|
||||
User: postgres
|
||||
PostgreSQL service is disabled by default.
|
||||
Use the following command as a part of your job to start the service: 'sudo systemctl start postgresql.service'
|
||||
```
|
||||
|
||||
#### MySQL
|
||||
- MySQL 8.0.36-2ubuntu3
|
||||
```
|
||||
User: root
|
||||
Password: root
|
||||
MySQL service is disabled by default.
|
||||
Use the following command as a part of your job to start the service: 'sudo systemctl start mysql.service'
|
||||
```
|
||||
|
||||
### Cached Tools
|
||||
|
||||
#### Go
|
||||
- 1.20.14
|
||||
- 1.21.10
|
||||
- 1.22.3
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
- 18.20.2
|
||||
- 20.13.1
|
||||
|
||||
#### Python
|
||||
- 3.9.19
|
||||
- 3.10.14
|
||||
- 3.11.9
|
||||
- 3.12.3
|
||||
|
||||
#### PyPy
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.14 [PyPy 7.3.16]
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.2
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 11.5.0
|
||||
- Microsoft.Graph: 2.19.0
|
||||
- Pester: 5.5.0
|
||||
- PSScriptAnalyzer: 1.22.0
|
||||
|
||||
### Web Servers
|
||||
| Name | Version | ConfigFile | ServiceStatus | ListenPort |
|
||||
| ------- | ------- | ------------------------- | ------------- | ---------- |
|
||||
| apache2 | 2.4.58 | /etc/apache2/apache2.conf | inactive | 80 |
|
||||
| nginx | 1.24.0 | /etc/nginx/nginx.conf | inactive | 80 |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 12.0 |
|
||||
| Android SDK Build-tools | 34.0.0 |
|
||||
| Android SDK Platforms | android-34-ext8 (rev 1)<br>android-34-ext11 (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 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653<br>26.3.11579264 (default) |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------------- | -------------------------------------------- |
|
||||
| ANDROID_HOME | /usr/local/lib/android/sdk |
|
||||
| ANDROID_NDK | /usr/local/lib/android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_HOME | /usr/local/lib/android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_LATEST_HOME | /usr/local/lib/android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_NDK_ROOT | /usr/local/lib/android/sdk/ndk/26.3.11579264 |
|
||||
| ANDROID_SDK_ROOT | /usr/local/lib/android/sdk |
|
||||
|
||||
### Installed apt packages
|
||||
| Name | Version |
|
||||
| ---------------------- | --------------------- |
|
||||
| acl | 2.3.2-1build1 |
|
||||
| aria2 | 1.37.0+debian-1build3 |
|
||||
| autoconf | 2.71-3 |
|
||||
| automake | 1:1.16.5-1.3ubuntu1 |
|
||||
| binutils | 2.42-4ubuntu2 |
|
||||
| bison | 2:3.8.2+dfsg-1build2 |
|
||||
| brotli | 1.1.0-2build2 |
|
||||
| bzip2 | 1.0.8-5.1 |
|
||||
| coreutils | 9.4-3ubuntu6 |
|
||||
| curl | 8.5.0-2ubuntu10.1 |
|
||||
| dbus | 1.14.10-4ubuntu4 |
|
||||
| dnsutils | 1:9.18.24-0ubuntu5 |
|
||||
| dpkg | 1.22.6ubuntu6 |
|
||||
| dpkg-dev | 1.22.6ubuntu6 |
|
||||
| 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.042-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 |
|
||||
| libssl-dev | 3.0.13-0ubuntu3 |
|
||||
| libtool | 2.4.7-7build1 |
|
||||
| locales | 2.39-0ubuntu8.1 |
|
||||
| lz4 | 1.9.4-1build1 |
|
||||
| m4 | 1.4.19-4build1 |
|
||||
| make | 4.3-4.1build2 |
|
||||
| mediainfo | 24.01.1-1build2 |
|
||||
| mercurial | 6.7.2-1ubuntu2 |
|
||||
| net-tools | 2.10-0.1ubuntu4 |
|
||||
| netcat | 1.226-1ubuntu2 |
|
||||
| openssh-client | 1:9.6p1-3ubuntu13 |
|
||||
| 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 |
|
||||
| python-is-python3 | 3.11.4-1 |
|
||||
| rpm | 4.18.2+dfsg-2.1build2 |
|
||||
| rsync | 3.2.7-1ubuntu1 |
|
||||
| shellcheck | 0.9.0-1 |
|
||||
| sphinxsearch | 2.2.11-8build1 |
|
||||
| sqlite3 | 3.45.1-1ubuntu2 |
|
||||
| ssh | 1:9.6p1-3ubuntu13 |
|
||||
| sshpass | 1.09-1 |
|
||||
| sudo | 1.9.15p5-3ubuntu5 |
|
||||
| swig | 4.2.0-2ubuntu1 |
|
||||
| tar | 1.35+dfsg-3build1 |
|
||||
| telnet | 0.17+2.5-3ubuntu4 |
|
||||
| texinfo | 7.1-3build2 |
|
||||
| time | 1.9-0.2build1 |
|
||||
| tk | 8.6.14build1 |
|
||||
| tzdata | 2024a-2ubuntu1 |
|
||||
| unzip | 6.0-28ubuntu4 |
|
||||
| upx | 4.2.2-3 |
|
||||
| wget | 1.21.4-1ubuntu4 |
|
||||
| xvfb | 2:21.1.12-1ubuntu1 |
|
||||
| xz-utils | 5.6.1+really5.4.5-1 |
|
||||
| zip | 3.0-13build1 |
|
||||
| zsync | 0.6.2-5build1 |
|
||||
|
||||
@@ -22,6 +22,22 @@ foreach ($module in $modules) {
|
||||
Save-Module -Path $modulePath -Name $moduleName -RequiredVersion $version -Force
|
||||
}
|
||||
|
||||
$assets = Invoke-RestMethod $module.url
|
||||
|
||||
# Get github release asset for each version
|
||||
foreach ($toolVersion in $module.zip_versions) {
|
||||
$asset = $assets | Where-Object version -eq $toolVersion `
|
||||
| Select-Object -ExpandProperty files `
|
||||
| Select-Object -First 1
|
||||
|
||||
if (-not $asset) {
|
||||
Write-Host "Asset for ${moduleName} ${toolVersion} was not found in versions manifest"
|
||||
exit 1
|
||||
}
|
||||
|
||||
Write-Host "Downloading asset for ${moduleName} ${toolVersion}: $($asset.filename)"
|
||||
Invoke-DownloadWithRetry $asset.download_url -Destination "$installPSModulePath/$($asset.filename)"
|
||||
}
|
||||
}
|
||||
|
||||
Invoke-PesterTests -TestFile "PowerShellModules" -TestName "AzureModules"
|
||||
|
||||
@@ -31,7 +31,7 @@ rm -f /usr/local/bin/invoke_tests
|
||||
|
||||
# remove apt mock
|
||||
prefix=/usr/local/bin
|
||||
for tool in apt apt-get apt-key;do
|
||||
for tool in apt apt-get apt-fast apt-key;do
|
||||
sudo rm -f $prefix/$tool
|
||||
done
|
||||
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
################################################################################
|
||||
## File: configure-apt-mock.sh
|
||||
## Desc: A temporary workaround for https://github.com/Azure/azure-linux-extensions/issues/1238.
|
||||
## Cleaned up during cleanup.sh.
|
||||
## Cleaned up during configure-cleanup.sh.
|
||||
################################################################################
|
||||
|
||||
prefix=/usr/local/bin
|
||||
|
||||
for real_tool in /usr/bin/apt /usr/bin/apt-get /usr/bin/apt-key; do
|
||||
for real_tool in /usr/bin/apt /usr/bin/apt-get /usr/bin/apt-fast /usr/bin/apt-key; do
|
||||
tool=$(basename $real_tool)
|
||||
cat >$prefix/$tool <<EOT
|
||||
#!/bin/sh
|
||||
|
||||
@@ -42,8 +42,6 @@ apt-get update
|
||||
# Install jq
|
||||
apt-get install jq
|
||||
|
||||
if ! is_ubuntu24; then
|
||||
# Install apt-fast using quick-install.sh
|
||||
# https://github.com/ilikenwf/apt-fast
|
||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/ilikenwf/apt-fast/master/quick-install.sh)"
|
||||
fi
|
||||
# Install apt-fast using quick-install.sh
|
||||
# https://github.com/ilikenwf/apt-fast
|
||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/ilikenwf/apt-fast/master/quick-install.sh)"
|
||||
|
||||
@@ -4,24 +4,8 @@
|
||||
## Desc: Install Azure CLI (az)
|
||||
################################################################################
|
||||
|
||||
# Source the helpers for use with the script
|
||||
source $HELPER_SCRIPTS/os.sh
|
||||
|
||||
# Install Azure CLI (instructions taken from https://docs.microsoft.com/en-us/cli/azure/install-azure-cli)
|
||||
if is_ubuntu24; then
|
||||
apt-get install apt-transport-https
|
||||
curl -sL https://packages.microsoft.com/keys/microsoft.asc | \
|
||||
gpg --dearmor | \
|
||||
sudo tee /etc/apt/trusted.gpg.d/microsoft.asc.gpg > /dev/null
|
||||
AZ_DIST="jammy"
|
||||
echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $AZ_DIST main" | \
|
||||
sudo tee /etc/apt/sources.list.d/azure-cli.list
|
||||
sudo apt-get update
|
||||
sudo apt-get install azure-cli
|
||||
else
|
||||
curl -fsSL https://aka.ms/InstallAzureCLIDeb | sudo bash
|
||||
fi
|
||||
|
||||
curl -fsSL https://aka.ms/InstallAzureCLIDeb | sudo bash
|
||||
echo "azure-cli https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt" >> $HELPER_SCRIPTS/apt-sources.txt
|
||||
|
||||
rm -f /etc/apt/sources.list.d/azure-cli.list
|
||||
|
||||
@@ -11,7 +11,7 @@ source $HELPER_SCRIPTS/os.sh
|
||||
# pin podman due to https://github.com/actions/runner-images/issues/7753
|
||||
# https://bugs.launchpad.net/ubuntu/+source/libpod/+bug/2024394
|
||||
#
|
||||
if ! is_ubuntu22; then
|
||||
if is_ubuntu20; then
|
||||
install_packages=(podman buildah skopeo)
|
||||
else
|
||||
install_packages=(podman=3.4.4+ds1-1ubuntu1 buildah skopeo)
|
||||
@@ -27,7 +27,7 @@ if is_ubuntu20; then
|
||||
echo "deb [arch=amd64 signed-by=$GPG_KEY] ${REPO_URL}/ /" > $REPO_PATH
|
||||
fi
|
||||
|
||||
# Install podman, buildah, skopeo container's tools
|
||||
# Install podman, buildah, scopeo container's tools
|
||||
apt-get update
|
||||
apt-get -y install ${install_packages[@]}
|
||||
mkdir -p /etc/containers
|
||||
|
||||
@@ -47,14 +47,7 @@ done
|
||||
# docker from official repo introduced different GID generation: https://github.com/actions/runner-images/issues/8157
|
||||
gid=$(cut -d ":" -f 3 /etc/group | grep "^1..$" | sort -n | tail -n 1 | awk '{ print $1+1 }')
|
||||
groupmod -g "$gid" docker
|
||||
|
||||
# Create systemd-tmpfiles configuration for Docker
|
||||
cat <<EOF | sudo tee /etc/tmpfiles.d/docker.conf
|
||||
L /run/docker.sock - - - - root docker 0770
|
||||
EOF
|
||||
|
||||
# Reload systemd-tmpfiles to apply the new configuration
|
||||
systemd-tmpfiles --create /etc/tmpfiles.d/docker.conf
|
||||
chgrp -hR docker /run/docker.sock
|
||||
|
||||
# Enable docker.service
|
||||
systemctl is-active --quiet docker.service || systemctl start docker.service
|
||||
|
||||
@@ -5,8 +5,13 @@
|
||||
################################################################################
|
||||
|
||||
# Source the helpers for use with the script
|
||||
source $HELPER_SCRIPTS/os.sh
|
||||
source $HELPER_SCRIPTS/install.sh
|
||||
|
||||
# Install GNU C++ compiler
|
||||
add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
||||
apt-get update -y
|
||||
|
||||
versions=$(get_toolset_value '.gcc.versions[]')
|
||||
|
||||
for version in ${versions[*]}; do
|
||||
|
||||
@@ -6,6 +6,11 @@
|
||||
|
||||
# Source the helpers for use with the script
|
||||
source $HELPER_SCRIPTS/install.sh
|
||||
source $HELPER_SCRIPTS/os.sh
|
||||
|
||||
# Install GNU Fortran compiler
|
||||
add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
||||
apt-get update -y
|
||||
|
||||
versions=$(get_toolset_value '.gfortran.versions[]')
|
||||
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
|
||||
# Source the helpers for use with the script
|
||||
source $HELPER_SCRIPTS/install.sh
|
||||
source $HELPER_SCRIPTS/etc-environment.sh
|
||||
|
||||
GIT_REPO="ppa:git-core/ppa"
|
||||
|
||||
@@ -22,10 +21,6 @@ cat <<EOF >> /etc/gitconfig
|
||||
directory = *
|
||||
EOF
|
||||
|
||||
# Revert to the old behaviour and avoid the Git LFS problems (https://github.blog/2024-05-14-securing-git-addressing-5-new-vulnerabilities/)
|
||||
set_etc_environment_variable "GIT_CLONE_PROTECTION_ACTIVE" 'false'
|
||||
reload_etc_environment
|
||||
|
||||
# Install git-ftp
|
||||
apt-get install git-ftp -y
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ REPO_PATH="/etc/apt/sources.list.d/heroku.list"
|
||||
|
||||
# add heroku repository to apt
|
||||
curl -fsSL "${REPO_URL}/release.key" | gpg --dearmor -o $GPG_KEY
|
||||
echo "deb [trusted=yes] $REPO_URL ./" > $REPO_PATH
|
||||
echo "deb [signed-by=$GPG_KEY] $REPO_URL ./" > $REPO_PATH
|
||||
|
||||
# install heroku
|
||||
apt-get update -y && apt-get install -y heroku
|
||||
|
||||
@@ -69,7 +69,6 @@ echo "deb [signed-by=/usr/share/keyrings/adoptium.gpg] https://packages.adoptium
|
||||
# Get all the updates from enabled repositories.
|
||||
apt-get update
|
||||
|
||||
# While Ubuntu 24.04 binaries are not released in the Adoptium repo, we will not install Java
|
||||
defaultVersion=$(get_toolset_value '.java.default')
|
||||
jdkVersionsToInstall=($(get_toolset_value ".java.versions[]"))
|
||||
|
||||
|
||||
@@ -10,6 +10,6 @@ source $HELPER_SCRIPTS/install.sh
|
||||
# Install Packer
|
||||
download_url=$(curl -fsSL https://api.releases.hashicorp.com/v1/releases/packer/latest | jq -r '.builds[] | select((.arch=="amd64") and (.os=="linux")).url')
|
||||
archive_path=$(download_with_retry "$download_url")
|
||||
unzip -o -qq "$archive_path" -d /usr/local/bin
|
||||
unzip -qq "$archive_path" -d /usr/local/bin
|
||||
|
||||
invoke_tests "Tools" "Packer"
|
||||
|
||||
@@ -73,11 +73,11 @@ for version in $php_versions; do
|
||||
# https://github.com/krakjoe/pcov#interoperability
|
||||
phpdismod -v $version pcov
|
||||
|
||||
if [[ $version == "7.2" || $version == "7.3" || $version == "7.4" ]]; then
|
||||
if [[ $version == "7.2" || $version == "7.3" ]]; then
|
||||
apt-get install -y --no-install-recommends php$version-recode
|
||||
fi
|
||||
|
||||
if [[ $version != "8.0" && $version != "8.1" && $version != "8.2" && $version != "8.3" ]]; then
|
||||
if [[ $version != "8.0" && $version != "8.1" && $version != "8.2" ]]; then
|
||||
apt-get install -y --no-install-recommends php$version-xmlrpc php$version-json
|
||||
fi
|
||||
done
|
||||
|
||||
@@ -6,16 +6,8 @@
|
||||
|
||||
# Source the helpers for use with the script
|
||||
source $HELPER_SCRIPTS/install.sh
|
||||
source $HELPER_SCRIPTS/os.sh
|
||||
|
||||
pwsh_version=$(get_toolset_value .pwsh.version)
|
||||
|
||||
# Install Powershell
|
||||
if is_ubuntu24; then
|
||||
dependency_path=$(download_with_retry "http://mirrors.kernel.org/ubuntu/pool/main/i/icu/libicu72_72.1-3ubuntu2_amd64.deb")
|
||||
sudo dpkg -i "$dependency_path"
|
||||
package_path=$(download_with_retry "https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell-lts_7.4.2-1.deb_amd64.deb")
|
||||
sudo dpkg -i "$package_path"
|
||||
else
|
||||
apt-get install -y powershell=$pwsh_version*
|
||||
fi
|
||||
apt-get install -y powershell=$pwsh_version*
|
||||
|
||||
@@ -16,13 +16,9 @@ apt-get install -y --no-install-recommends python3 python3-dev python3-pip pytho
|
||||
# Set pipx custom directory
|
||||
export PIPX_BIN_DIR=/opt/pipx_bin
|
||||
export PIPX_HOME=/opt/pipx
|
||||
if is_ubuntu24; then
|
||||
apt-get install -y --no-install-recommends pipx
|
||||
pipx ensurepath
|
||||
else
|
||||
python3 -m pip install pipx
|
||||
python3 -m pipx ensurepath
|
||||
fi
|
||||
python3 -m pip install pipx
|
||||
python3 -m pipx ensurepath
|
||||
|
||||
# Update /etc/environment
|
||||
set_etc_environment_variable "PIPX_BIN_DIR" $PIPX_BIN_DIR
|
||||
set_etc_environment_variable "PIPX_HOME" $PIPX_HOME
|
||||
|
||||
@@ -21,9 +21,7 @@ rustup component add rustfmt clippy
|
||||
|
||||
if is_ubuntu22; then
|
||||
cargo install bindgen-cli cbindgen cargo-audit cargo-outdated
|
||||
fi
|
||||
|
||||
if is_ubuntu20; then
|
||||
else
|
||||
cargo install --locked bindgen-cli cbindgen cargo-audit cargo-outdated
|
||||
fi
|
||||
|
||||
|
||||
@@ -48,20 +48,14 @@ if (Test-IsUbuntu20) {
|
||||
$languageAndRuntime.AddToolVersionsListInline("GNU C++", $(Get-CPPVersions), "^\d+")
|
||||
$languageAndRuntime.AddToolVersionsListInline("GNU Fortran", $(Get-FortranVersions), "^\d+")
|
||||
$languageAndRuntime.AddToolVersion("Julia", $(Get-JuliaVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$languageAndRuntime.AddToolVersion("Kotlin", $(Get-KotlinVersion))
|
||||
}
|
||||
if (-not $(Test-IsUbuntu24)) {
|
||||
$languageAndRuntime.AddToolVersion("Mono", $(Get-MonoVersion))
|
||||
$languageAndRuntime.AddToolVersion("MSBuild", $(Get-MsbuildVersion))
|
||||
}
|
||||
$languageAndRuntime.AddToolVersion("Kotlin", $(Get-KotlinVersion))
|
||||
$languageAndRuntime.AddToolVersion("Mono", $(Get-MonoVersion))
|
||||
$languageAndRuntime.AddToolVersion("MSBuild", $(Get-MsbuildVersion))
|
||||
$languageAndRuntime.AddToolVersion("Node.js", $(Get-NodeVersion))
|
||||
$languageAndRuntime.AddToolVersion("Perl", $(Get-PerlVersion))
|
||||
$languageAndRuntime.AddToolVersion("Python", $(Get-PythonVersion))
|
||||
$languageAndRuntime.AddToolVersion("Ruby", $(Get-RubyVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$languageAndRuntime.AddToolVersion("Swift", $(Get-SwiftVersion))
|
||||
}
|
||||
$languageAndRuntime.AddToolVersion("Swift", $(Get-SwiftVersion))
|
||||
|
||||
# Package Management
|
||||
$packageManagement = $installedSoftware.AddHeader("Package Management")
|
||||
@@ -70,9 +64,7 @@ $packageManagement.AddToolVersion("Helm", $(Get-HelmVersion))
|
||||
$packageManagement.AddToolVersion("Homebrew", $(Get-HomebrewVersion))
|
||||
$packageManagement.AddToolVersion("Miniconda", $(Get-MinicondaVersion))
|
||||
$packageManagement.AddToolVersion("Npm", $(Get-NpmVersion))
|
||||
if (-not $(Test-IsUbuntu24)) {
|
||||
$packageManagement.AddToolVersion("NuGet", $(Get-NuGetVersion))
|
||||
}
|
||||
$packageManagement.AddToolVersion("NuGet", $(Get-NuGetVersion))
|
||||
$packageManagement.AddToolVersion("Pip", $(Get-PipVersion))
|
||||
$packageManagement.AddToolVersion("Pip3", $(Get-Pip3Version))
|
||||
$packageManagement.AddToolVersion("Pipx", $(Get-PipxVersion))
|
||||
@@ -89,11 +81,15 @@ to accomplish this.
|
||||
|
||||
# Project Management
|
||||
$projectManagement = $installedSoftware.AddHeader("Project Management")
|
||||
$projectManagement.AddToolVersion("Ant", $(Get-AntVersion))
|
||||
$projectManagement.AddToolVersion("Gradle", $(Get-GradleVersion))
|
||||
$projectManagement.AddToolVersion("Lerna", $(Get-LernaVersion))
|
||||
$projectManagement.AddToolVersion("Maven", $(Get-MavenVersion))
|
||||
if (Test-IsUbuntu20) {
|
||||
$projectManagement.AddToolVersion("Ant", $(Get-AntVersion))
|
||||
$projectManagement.AddToolVersion("Gradle", $(Get-GradleVersion))
|
||||
}
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$projectManagement.AddToolVersion("Lerna", $(Get-LernaVersion))
|
||||
}
|
||||
$projectManagement.AddToolVersion("Maven", $(Get-MavenVersion))
|
||||
if (Test-IsUbuntu20) {
|
||||
$projectManagement.AddToolVersion("Sbt", $(Get-SbtVersion))
|
||||
}
|
||||
|
||||
@@ -109,21 +105,19 @@ $tools.AddToolVersion("Buildah", $(Get-BuildahVersion))
|
||||
$tools.AddToolVersion("CMake", $(Get-CMakeVersion))
|
||||
$tools.AddToolVersion("CodeQL Action Bundle", $(Get-CodeQLBundleVersion))
|
||||
$tools.AddToolVersion("Docker Amazon ECR Credential Helper", $(Get-DockerAmazonECRCredHelperVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$tools.AddToolVersion("Docker Compose v1", $(Get-DockerComposeV1Version))
|
||||
}
|
||||
$tools.AddToolVersion("Docker Compose v1", $(Get-DockerComposeV1Version))
|
||||
$tools.AddToolVersion("Docker Compose v2", $(Get-DockerComposeV2Version))
|
||||
$tools.AddToolVersion("Docker-Buildx", $(Get-DockerBuildxVersion))
|
||||
$tools.AddToolVersion("Docker Client", $(Get-DockerClientVersion))
|
||||
$tools.AddToolVersion("Docker Server", $(Get-DockerServerVersion))
|
||||
$tools.AddToolVersion("Fastlane", $(Get-FastlaneVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$tools.AddToolVersion("Fastlane", $(Get-FastlaneVersion))
|
||||
}
|
||||
$tools.AddToolVersion("Git", $(Get-GitVersion))
|
||||
$tools.AddToolVersion("Git LFS", $(Get-GitLFSVersion))
|
||||
$tools.AddToolVersion("Git-ftp", $(Get-GitFTPVersion))
|
||||
$tools.AddToolVersion("Haveged", $(Get-HavegedVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$tools.AddToolVersion("Heroku", $(Get-HerokuVersion))
|
||||
}
|
||||
$tools.AddToolVersion("Heroku", $(Get-HerokuVersion))
|
||||
if (Test-IsUbuntu20) {
|
||||
$tools.AddToolVersion("HHVM (HipHop VM)", $(Get-HHVMVersion))
|
||||
}
|
||||
@@ -131,119 +125,88 @@ $tools.AddToolVersion("jq", $(Get-JqVersion))
|
||||
$tools.AddToolVersion("Kind", $(Get-KindVersion))
|
||||
$tools.AddToolVersion("Kubectl", $(Get-KubectlVersion))
|
||||
$tools.AddToolVersion("Kustomize", $(Get-KustomizeVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$tools.AddToolVersion("Leiningen", $(Get-LeiningenVersion))
|
||||
}
|
||||
$tools.AddToolVersion("Leiningen", $(Get-LeiningenVersion))
|
||||
$tools.AddToolVersion("MediaInfo", $(Get-MediainfoVersion))
|
||||
$tools.AddToolVersion("Mercurial", $(Get-HGVersion))
|
||||
$tools.AddToolVersion("Minikube", $(Get-MinikubeVersion))
|
||||
$tools.AddToolVersion("n", $(Get-NVersion))
|
||||
$tools.AddToolVersion("Newman", $(Get-NewmanVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$tools.AddToolVersion("nvm", $(Get-NvmVersion))
|
||||
}
|
||||
$tools.AddToolVersion("nvm", $(Get-NvmVersion))
|
||||
$tools.AddToolVersion("OpenSSL", $(Get-OpensslVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$tools.AddToolVersion("Packer", $(Get-PackerVersion))
|
||||
}
|
||||
$tools.AddToolVersion("Packer", $(Get-PackerVersion))
|
||||
$tools.AddToolVersion("Parcel", $(Get-ParcelVersion))
|
||||
if (Test-IsUbuntu20) {
|
||||
$tools.AddToolVersion("PhantomJS", $(Get-PhantomJSVersion))
|
||||
}
|
||||
$tools.AddToolVersion("Podman", $(Get-PodManVersion))
|
||||
$tools.AddToolVersion("Pulumi", $(Get-PulumiVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$tools.AddToolVersion("R", $(Get-RVersion))
|
||||
}
|
||||
$tools.AddToolVersion("R", $(Get-RVersion))
|
||||
$tools.AddToolVersion("Skopeo", $(Get-SkopeoVersion))
|
||||
$tools.AddToolVersion("Sphinx Open Source Search Server", $(Get-SphinxVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$tools.AddToolVersion("SVN", $(Get-SVNVersion))
|
||||
$tools.AddToolVersion("Terraform", $(Get-TerraformVersion))
|
||||
}
|
||||
$tools.AddToolVersion("SVN", $(Get-SVNVersion))
|
||||
$tools.AddToolVersion("Terraform", $(Get-TerraformVersion))
|
||||
$tools.AddToolVersion("yamllint", $(Get-YamllintVersion))
|
||||
$tools.AddToolVersion("yq", $(Get-YqVersion))
|
||||
$tools.AddToolVersion("zstd", $(Get-ZstdVersion))
|
||||
|
||||
# CLI Tools
|
||||
$cliTools = $installedSoftware.AddHeader("CLI Tools")
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$cliTools.AddToolVersion("Alibaba Cloud CLI", $(Get-AlibabaCloudCliVersion))
|
||||
}
|
||||
$cliTools.AddToolVersion("Alibaba Cloud CLI", $(Get-AlibabaCloudCliVersion))
|
||||
$cliTools.AddToolVersion("AWS CLI", $(Get-AWSCliVersion))
|
||||
$cliTools.AddToolVersion("AWS CLI Session Manager Plugin", $(Get-AWSCliSessionManagerPluginVersion))
|
||||
$cliTools.AddToolVersion("AWS SAM CLI", $(Get-AWSSAMVersion))
|
||||
$cliTools.AddToolVersion("Azure CLI", $(Get-AzureCliVersion))
|
||||
$cliTools.AddToolVersion("Azure CLI (azure-devops)", $(Get-AzureDevopsVersion))
|
||||
$cliTools.AddToolVersion("GitHub CLI", $(Get-GitHubCliVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$cliTools.AddToolVersion("Google Cloud CLI", $(Get-GoogleCloudCLIVersion))
|
||||
$cliTools.AddToolVersion("Netlify CLI", $(Get-NetlifyCliVersion))
|
||||
$cliTools.AddToolVersion("OpenShift CLI", $(Get-OCCliVersion))
|
||||
$cliTools.AddToolVersion("ORAS CLI", $(Get-ORASCliVersion))
|
||||
$cliTools.AddToolVersion("Vercel CLI", $(Get-VerselCliversion))
|
||||
}
|
||||
$cliTools.AddToolVersion("Google Cloud CLI", $(Get-GoogleCloudCLIVersion))
|
||||
$cliTools.AddToolVersion("Netlify CLI", $(Get-NetlifyCliVersion))
|
||||
$cliTools.AddToolVersion("OpenShift CLI", $(Get-OCCliVersion))
|
||||
$cliTools.AddToolVersion("ORAS CLI", $(Get-ORASCliVersion))
|
||||
$cliTools.AddToolVersion("Vercel CLI", $(Get-VerselCliversion))
|
||||
|
||||
# Java
|
||||
$installedSoftware.AddHeader("Java").AddTable($(Get-JavaVersionsTable))
|
||||
|
||||
# PHP Tools
|
||||
$phpTools = $installedSoftware.AddHeader("PHP Tools")
|
||||
$phpTools.AddToolVersionsListInline("PHP", $(Get-PHPVersions), "^\d+\.\d+")
|
||||
$phpTools.AddToolVersion("Composer", $(Get-ComposerVersion))
|
||||
$phpTools.AddToolVersion("PHPUnit", $(Get-PHPUnitVersion))
|
||||
$phpTools.AddNote("Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.")
|
||||
|
||||
# Haskell Tools
|
||||
$haskellTools = $installedSoftware.AddHeader("Haskell Tools")
|
||||
$haskellTools.AddToolVersion("Cabal", $(Get-CabalVersion))
|
||||
$haskellTools.AddToolVersion("GHC", $(Get-GHCVersion))
|
||||
$haskellTools.AddToolVersion("GHCup", $(Get-GHCupVersion))
|
||||
$haskellTools.AddToolVersion("Stack", $(Get-StackVersion))
|
||||
|
||||
# Rust Tools
|
||||
Initialize-RustEnvironment
|
||||
$rustTools = $installedSoftware.AddHeader("Rust Tools")
|
||||
$rustTools.AddToolVersion("Cargo", $(Get-CargoVersion))
|
||||
$rustTools.AddToolVersion("Rust", $(Get-RustVersion))
|
||||
$rustTools.AddToolVersion("Rustdoc", $(Get-RustdocVersion))
|
||||
$rustTools.AddToolVersion("Rustup", $(Get-RustupVersion))
|
||||
|
||||
# Packages
|
||||
$rustToolsPackages = $rustTools.AddHeader("Packages")
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$rustToolsPackages.AddToolVersion("Bindgen", $(Get-BindgenVersion))
|
||||
$rustToolsPackages.AddToolVersion("Cargo audit", $(Get-CargoAuditVersion))
|
||||
$rustToolsPackages.AddToolVersion("Cargo clippy", $(Get-CargoClippyVersion))
|
||||
$rustToolsPackages.AddToolVersion("Cargo outdated", $(Get-CargoOutdatedVersion))
|
||||
$rustToolsPackages.AddToolVersion("Cbindgen", $(Get-CbindgenVersion))
|
||||
}
|
||||
$rustToolsPackages.AddToolVersion("Bindgen", $(Get-BindgenVersion))
|
||||
$rustToolsPackages.AddToolVersion("Cargo audit", $(Get-CargoAuditVersion))
|
||||
$rustToolsPackages.AddToolVersion("Cargo clippy", $(Get-CargoClippyVersion))
|
||||
$rustToolsPackages.AddToolVersion("Cargo outdated", $(Get-CargoOutdatedVersion))
|
||||
$rustToolsPackages.AddToolVersion("Cbindgen", $(Get-CbindgenVersion))
|
||||
$rustToolsPackages.AddToolVersion("Rustfmt", $(Get-RustfmtVersion))
|
||||
|
||||
# Browsers and Drivers
|
||||
$browsersTools = $installedSoftware.AddHeader("Browsers and Drivers")
|
||||
$browsersTools.AddToolVersion("Google Chrome", $(Get-ChromeVersion))
|
||||
$browsersTools.AddToolVersion("ChromeDriver", $(Get-ChromeDriverVersion))
|
||||
$browsersTools.AddToolVersion("Chromium", $(Get-ChromiumVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$browsersTools.AddToolVersion("Microsoft Edge", $(Get-EdgeVersion))
|
||||
$browsersTools.AddToolVersion("Microsoft Edge WebDriver", $(Get-EdgeDriverVersion))
|
||||
}
|
||||
$browsersTools.AddToolVersion("Microsoft Edge", $(Get-EdgeVersion))
|
||||
$browsersTools.AddToolVersion("Microsoft Edge WebDriver", $(Get-EdgeDriverVersion))
|
||||
$browsersTools.AddToolVersion("Selenium server", $(Get-SeleniumVersion))
|
||||
if ((Test-IsUbuntu20) -or (Test-IsUbuntu22)) {
|
||||
$browsersTools.AddToolVersion("Mozilla Firefox", $(Get-FirefoxVersion))
|
||||
$browsersTools.AddToolVersion("Geckodriver", $(Get-GeckodriverVersion))
|
||||
}
|
||||
|
||||
# Environment variables
|
||||
$browsersTools.AddToolVersion("Mozilla Firefox", $(Get-FirefoxVersion))
|
||||
$browsersTools.AddToolVersion("Geckodriver", $(Get-GeckodriverVersion))
|
||||
$browsersTools.AddHeader("Environment variables").AddTable($(Build-BrowserWebdriversEnvironmentTable))
|
||||
|
||||
# .NET Tools
|
||||
$netCoreTools = $installedSoftware.AddHeader(".NET Tools")
|
||||
$netCoreTools.AddToolVersionsListInline(".NET Core SDK", $(Get-DotNetCoreSdkVersions), "^\d+\.\d+\.\d")
|
||||
$netCoreTools.AddNodes($(Get-DotnetTools))
|
||||
|
||||
# Databases
|
||||
$databasesTools = $installedSoftware.AddHeader("Databases")
|
||||
if (Test-IsUbuntu20) {
|
||||
$databasesTools.AddToolVersion("MongoDB", $(Get-MongoDbVersion))
|
||||
@@ -251,21 +214,15 @@ if (Test-IsUbuntu20) {
|
||||
$databasesTools.AddToolVersion("sqlite3", $(Get-SqliteVersion))
|
||||
$databasesTools.AddNode($(Build-PostgreSqlSection))
|
||||
$databasesTools.AddNode($(Build-MySQLSection))
|
||||
if (-not $(Test-IsUbuntu24)) {
|
||||
$databasesTools.AddNode($(Build-MSSQLToolsSection))
|
||||
}
|
||||
$databasesTools.AddNode($(Build-MSSQLToolsSection))
|
||||
|
||||
# Cached Tools
|
||||
$cachedTools = $installedSoftware.AddHeader("Cached Tools")
|
||||
$cachedTools.AddToolVersionsList("Go", $(Get-ToolcacheGoVersions), "^\d+\.\d+")
|
||||
$cachedTools.AddToolVersionsList("Node.js", $(Get-ToolcacheNodeVersions), "^\d+")
|
||||
$cachedTools.AddToolVersionsList("Python", $(Get-ToolcachePythonVersions), "^\d+\.\d+")
|
||||
$cachedTools.AddToolVersionsList("PyPy", $(Get-ToolcachePyPyVersions), "^\d+\.\d+")
|
||||
if (-not $(Test-IsUbuntu24)) {
|
||||
$cachedTools.AddToolVersionsList("Ruby", $(Get-ToolcacheRubyVersions), "^\d+\.\d+")
|
||||
}
|
||||
$cachedTools.AddToolVersionsList("Ruby", $(Get-ToolcacheRubyVersions), "^\d+\.\d+")
|
||||
|
||||
# PowerShell Tools
|
||||
$powerShellTools = $installedSoftware.AddHeader("PowerShell Tools")
|
||||
$powerShellTools.AddToolVersion("PowerShell", $(Get-PowershellVersion))
|
||||
$powerShellTools.AddHeader("PowerShell Modules").AddNodes($(Get-PowerShellModules))
|
||||
@@ -274,12 +231,9 @@ $installedSoftware.AddHeader("Web Servers").AddTable($(Build-WebServersTable))
|
||||
|
||||
$androidTools = $installedSoftware.AddHeader("Android")
|
||||
$androidTools.AddTable($(Build-AndroidTable))
|
||||
|
||||
$androidTools.AddHeader("Environment variables").AddTable($(Build-AndroidEnvironmentTable))
|
||||
|
||||
if (-not $(Test-IsUbuntu24)) {
|
||||
$installedSoftware.AddHeader("Cached Docker images").AddTable($(Get-CachedDockerImagesTableData))
|
||||
}
|
||||
$installedSoftware.AddHeader("Cached Docker images").AddTable($(Get-CachedDockerImagesTableData))
|
||||
$installedSoftware.AddHeader("Installed apt packages").AddTable($(Get-AptPackages))
|
||||
|
||||
$softwareReport.ToJson() | Out-File -FilePath "${OutputDirectory}/software-report.json" -Encoding UTF8NoBOM
|
||||
|
||||
@@ -10,7 +10,7 @@ function Get-DashVersion {
|
||||
|
||||
function Get-CPPVersions {
|
||||
$result = Get-CommandResult "apt list --installed" -Multiline
|
||||
$cppVersions = $result.Output | Where-Object { $_ -match "g\+\+-\d\d\/" } | ForEach-Object {
|
||||
$cppVersions = $result.Output | Where-Object { $_ -match "g\+\+-\d+" } | ForEach-Object {
|
||||
& $_.Split("/")[0] --version | Select-Object -First 1 | Get-StringPart -Part 3
|
||||
} | Sort-Object {[Version] $_}
|
||||
return $cppVersions
|
||||
@@ -18,8 +18,9 @@ function Get-CPPVersions {
|
||||
|
||||
function Get-FortranVersions {
|
||||
$result = Get-CommandResult "apt list --installed" -Multiline
|
||||
$fortranVersions = $result.Output | Where-Object { $_ -match "^gfortran-\d\d\/" } | ForEach-Object {
|
||||
& $_.Split("/")[0] --version | Select-Object -First 1 | Get-StringPart -Part 4
|
||||
$fortranVersions = $result.Output | Where-Object { $_ -match "^gfortran-\d+" } | ForEach-Object {
|
||||
$_ -match "now (?<version>\d+\.\d+\.\d+)-" | Out-Null
|
||||
$Matches.version
|
||||
} | Sort-Object {[Version] $_}
|
||||
return $fortranVersions
|
||||
}
|
||||
@@ -174,13 +175,15 @@ function Get-ParcelVersion {
|
||||
}
|
||||
|
||||
function Get-PipVersion {
|
||||
$pipVersion = pip --version | Get-StringPart -Part 1
|
||||
return $pipVersion
|
||||
$result = Get-CommandResult "pip --version"
|
||||
$result.Output -match "pip (?<version>\d+\.\d+\.\d+)" | Out-Null
|
||||
return $Matches.version
|
||||
}
|
||||
|
||||
function Get-Pip3Version {
|
||||
$pip3Version = pip3 --version | Get-StringPart -Part 1
|
||||
return $pip3Version
|
||||
$result = Get-CommandResult "pip3 --version"
|
||||
$result.Output -match "pip (?<version>\d+\.\d+\.\d+)" | Out-Null
|
||||
return $Matches.version
|
||||
}
|
||||
|
||||
function Get-VcpkgVersion {
|
||||
|
||||
@@ -5,13 +5,13 @@
|
||||
################################################################################
|
||||
|
||||
is_ubuntu20() {
|
||||
lsb_release -rs | grep -q '20.04'
|
||||
lsb_release -d | grep -q 'Ubuntu 20'
|
||||
}
|
||||
|
||||
is_ubuntu22() {
|
||||
lsb_release -rs | grep -q '22.04'
|
||||
lsb_release -d | grep -q 'Ubuntu 22'
|
||||
}
|
||||
|
||||
is_ubuntu24() {
|
||||
lsb_release -rs | grep -q '24.04'
|
||||
}
|
||||
lsb_release -d | grep -q 'Ubuntu 24'
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
Describe "Firefox" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Firefox" {
|
||||
It "Firefox" {
|
||||
"firefox --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -24,7 +24,7 @@ Describe "Chrome" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Edge" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Edge" {
|
||||
It "Edge" {
|
||||
"microsoft-edge --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ Describe "Azure DevOps CLI" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Aliyun CLI" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Aliyun CLI" {
|
||||
It "Aliyun CLI" {
|
||||
"aliyun version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -36,19 +36,19 @@ Describe "GitHub CLI" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Google Cloud CLI" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Google Cloud CLI" {
|
||||
It "Google Cloud CLI" {
|
||||
"gcloud --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "OC CLI" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "OC CLI" {
|
||||
It "OC CLI" {
|
||||
"oc version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Oras CLI" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Oras CLI" {
|
||||
It "Oras CLI" {
|
||||
"oras version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ Describe "PHP" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Swift" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Swift" {
|
||||
It "swift" {
|
||||
"swift --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Describe "MongoDB" -Skip:(-not (Test-IsUbuntu20)) {
|
||||
Describe "MongoDB" -Skip:(Test-IsUbuntu22) {
|
||||
It "<ToolName>" -TestCases @(
|
||||
@{ ToolName = "mongo" }
|
||||
@{ ToolName = "mongod" }
|
||||
|
||||
@@ -17,10 +17,22 @@ Describe "Java" {
|
||||
It "<ToolName>" -TestCases @(
|
||||
@{ ToolName = "java" }
|
||||
@{ ToolName = "javac" }
|
||||
@{ ToolName = "mvn" }
|
||||
@{ ToolName = "ant" }
|
||||
) {
|
||||
"$ToolName -version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
It "Gradle" {
|
||||
"gradle -version" | Should -ReturnZeroExitCode
|
||||
|
||||
$gradleVariableValue = [System.Environment]::GetEnvironmentVariable("GRADLE_HOME")
|
||||
$gradleVariableValue | Should -BeLike "/usr/share/gradle-*"
|
||||
|
||||
$gradlePath = Join-Path $env:GRADLE_HOME "bin/gradle"
|
||||
"`"$GradlePath`" -version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
$testCases = $jdkVersions | ForEach-Object { @{Version = $_ } }
|
||||
|
||||
It "Java <Version>" -TestCases $testCases {
|
||||
@@ -36,21 +48,3 @@ Describe "Java" {
|
||||
"`"$javaPath`" -version" | Should -OutputTextMatchingRegex "openjdk\ version\ `"${Version}(\.[0-9_\.]+)?`""
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Java-Tools" {
|
||||
It "Gradle" {
|
||||
"gradle -version" | Should -ReturnZeroExitCode
|
||||
|
||||
$gradleVariableValue = [System.Environment]::GetEnvironmentVariable("GRADLE_HOME")
|
||||
$gradleVariableValue | Should -BeLike "/usr/share/gradle-*"
|
||||
|
||||
$gradlePath = Join-Path $env:GRADLE_HOME "bin/gradle"
|
||||
"`"$GradlePath`" -version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
It "<ToolName>" -TestCases @(
|
||||
@{ ToolName = "mvn" }
|
||||
@{ ToolName = "ant" }
|
||||
) {
|
||||
"$ToolName -version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
||||
Describe "azcopy" {
|
||||
It "azcopy" {
|
||||
"azcopy --version" | Should -ReturnZeroExitCode
|
||||
@@ -37,12 +36,8 @@ Describe "Rust" {
|
||||
It "Rustfmt is installed" {
|
||||
"rustfmt --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
It "cargo" {
|
||||
"cargo --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
Context "Cargo dependencies" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Context "Cargo dependencies" {
|
||||
It "bindgen" {
|
||||
"bindgen --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -51,6 +46,10 @@ Describe "Rust" {
|
||||
"cbindgen --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
It "cargo" {
|
||||
"cargo --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
It "cargo-clippy" {
|
||||
"cargo-clippy --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -69,27 +68,12 @@ Describe "Docker" {
|
||||
It "docker client" {
|
||||
$version=(Get-ToolsetContent).docker.components | Where-Object { $_.package -eq 'docker-ce-cli' } | Select-Object -ExpandProperty version
|
||||
If ($version -ne "latest") {
|
||||
$(sudo docker version --format '{{.Client.Version}}') | Should -BeLike "*$version*"
|
||||
$(docker version --format '{{.Client.Version}}') | Should -BeLike "*$version*"
|
||||
}else{
|
||||
"sudo docker version --format '{{.Client.Version}}'" | Should -ReturnZeroExitCode
|
||||
"docker version --format '{{.Client.Version}}'" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
It "docker server" {
|
||||
$version=(Get-ToolsetContent).docker.components | Where-Object { $_.package -eq 'docker-ce' } | Select-Object -ExpandProperty version
|
||||
If ($version -ne "latest") {
|
||||
$(sudo docker version --format '{{.Server.Version}}') | Should -BeLike "*$version*"
|
||||
}else{
|
||||
"sudo docker version --format '{{.Server.Version}}'" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
It "docker client/server versions match" {
|
||||
$clientVersion = $(sudo docker version --format '{{.Client.Version}}')
|
||||
$serverVersion = $(sudo docker version --format '{{.Server.Version}}')
|
||||
$clientVersion | Should -Be $serverVersion
|
||||
}
|
||||
|
||||
It "docker buildx" {
|
||||
$version=(Get-ToolsetContent).docker.plugins | Where-Object { $_.plugin -eq 'buildx' } | Select-Object -ExpandProperty version
|
||||
If ($version -ne "latest") {
|
||||
@@ -121,7 +105,7 @@ Describe "Docker images" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Docker-compose v1" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Docker-compose v1" {
|
||||
It "docker-compose" {
|
||||
"docker-compose --version"| Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -160,7 +144,7 @@ Describe "Cmake" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "erlang" -Skip:(-not (Test-IsUbuntu20)) {
|
||||
Describe "erlang" -Skip:(Test-IsUbuntu22) {
|
||||
$testCases = @("erl -version", "erlc -v", "rebar3 -v") | ForEach-Object { @{ErlangCommand = $_} }
|
||||
|
||||
It "erlang <ErlangCommand>" -TestCases $testCases {
|
||||
@@ -184,7 +168,7 @@ Describe "gfortran" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Mono" -Skip:(Test-IsUbuntu24) {
|
||||
Describe "Mono" {
|
||||
It "mono" {
|
||||
"mono --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -198,25 +182,25 @@ Describe "Mono" -Skip:(Test-IsUbuntu24) {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "MSSQLCommandLineTools" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "MSSQLCommandLineTools" {
|
||||
It "sqlcmd" {
|
||||
"sqlcmd -?" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "SqlPackage" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "SqlPackage" {
|
||||
It "sqlpackage" {
|
||||
"sqlpackage /version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "R" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "R" {
|
||||
It "r" {
|
||||
"R --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Sbt" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Sbt" {
|
||||
It "sbt" {
|
||||
"sbt --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -229,7 +213,7 @@ Describe "Selenium" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Terraform" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Terraform" {
|
||||
It "terraform" {
|
||||
"terraform --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -259,10 +243,6 @@ Describe "Git" {
|
||||
It "git-ftp" {
|
||||
"git-ftp --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
It "GIT_CLONE_PROTECTION_ACTIVE environment variable should be equal false" {
|
||||
$env:GIT_CLONE_PROTECTION_ACTIVE | Should -BeExactly false
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Git-lfs" {
|
||||
@@ -271,13 +251,13 @@ Describe "Git-lfs" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Heroku" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Heroku" {
|
||||
It "heroku" {
|
||||
"heroku --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
Describe "HHVM" -Skip:(-not (Test-IsUbuntu20)) {
|
||||
Describe "HHVM" -Skip:(Test-IsUbuntu22) {
|
||||
It "hhvm" {
|
||||
"hhvm --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -317,7 +297,7 @@ Describe "Kubernetes tools" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Leiningen" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Leiningen" {
|
||||
It "leiningen" {
|
||||
"lein --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -329,7 +309,7 @@ Describe "Conda" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Packer" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Packer" {
|
||||
It "packer" {
|
||||
"packer --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -341,7 +321,7 @@ Describe "Pulumi" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Phantomjs" -Skip:(-not (Test-IsUbuntu20)) {
|
||||
Describe "Phantomjs" -Skip:(Test-IsUbuntu22) {
|
||||
It "phantomjs" {
|
||||
$env:OPENSSL_CONF="/etc/ssl"
|
||||
"phantomjs --version" | Should -ReturnZeroExitCode
|
||||
@@ -364,7 +344,7 @@ Describe "Containers" {
|
||||
|
||||
}
|
||||
|
||||
Describe "nvm" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "nvm" {
|
||||
It "nvm" {
|
||||
"source /etc/skel/.nvm/nvm.sh && nvm --version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
@@ -400,7 +380,7 @@ Describe "yq" {
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Kotlin" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) {
|
||||
Describe "Kotlin" {
|
||||
It "kapt" {
|
||||
"kapt -version" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
@@ -1,393 +0,0 @@
|
||||
packer {
|
||||
required_plugins {
|
||||
azure = {
|
||||
source = "github.com/hashicorp/azure"
|
||||
version = "1.4.5"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
locals {
|
||||
managed_image_name = var.managed_image_name != "" ? var.managed_image_name : "packer-${var.image_os}-${var.image_version}"
|
||||
}
|
||||
|
||||
variable "allowed_inbound_ip_addresses" {
|
||||
type = list(string)
|
||||
default = []
|
||||
}
|
||||
|
||||
variable "azure_tags" {
|
||||
type = map(string)
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "build_resource_group_name" {
|
||||
type = string
|
||||
default = "${env("BUILD_RESOURCE_GROUP_NAME")}"
|
||||
}
|
||||
|
||||
variable "client_cert_path" {
|
||||
type = string
|
||||
default = "${env("ARM_CLIENT_CERT_PATH")}"
|
||||
}
|
||||
|
||||
variable "client_id" {
|
||||
type = string
|
||||
default = "${env("ARM_CLIENT_ID")}"
|
||||
}
|
||||
|
||||
variable "client_secret" {
|
||||
type = string
|
||||
default = "${env("ARM_CLIENT_SECRET")}"
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "dockerhub_login" {
|
||||
type = string
|
||||
default = "${env("DOCKERHUB_LOGIN")}"
|
||||
}
|
||||
|
||||
variable "dockerhub_password" {
|
||||
type = string
|
||||
default = "${env("DOCKERHUB_PASSWORD")}"
|
||||
}
|
||||
|
||||
variable "helper_script_folder" {
|
||||
type = string
|
||||
default = "/imagegeneration/helpers"
|
||||
}
|
||||
|
||||
variable "image_folder" {
|
||||
type = string
|
||||
default = "/imagegeneration"
|
||||
}
|
||||
|
||||
variable "image_os" {
|
||||
type = string
|
||||
default = "ubuntu24"
|
||||
}
|
||||
|
||||
variable "image_version" {
|
||||
type = string
|
||||
default = "dev"
|
||||
}
|
||||
|
||||
variable "imagedata_file" {
|
||||
type = string
|
||||
default = "/imagegeneration/imagedata.json"
|
||||
}
|
||||
|
||||
variable "installer_script_folder" {
|
||||
type = string
|
||||
default = "/imagegeneration/installers"
|
||||
}
|
||||
|
||||
variable "install_password" {
|
||||
type = string
|
||||
default = ""
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "location" {
|
||||
type = string
|
||||
default = "${env("ARM_RESOURCE_LOCATION")}"
|
||||
}
|
||||
|
||||
variable "managed_image_name" {
|
||||
type = string
|
||||
default = ""
|
||||
}
|
||||
|
||||
variable "managed_image_resource_group_name" {
|
||||
type = string
|
||||
default = "${env("ARM_RESOURCE_GROUP")}"
|
||||
}
|
||||
|
||||
variable "private_virtual_network_with_public_ip" {
|
||||
type = bool
|
||||
default = false
|
||||
}
|
||||
|
||||
variable "subscription_id" {
|
||||
type = string
|
||||
default = "${env("ARM_SUBSCRIPTION_ID")}"
|
||||
}
|
||||
|
||||
variable "temp_resource_group_name" {
|
||||
type = string
|
||||
default = "${env("TEMP_RESOURCE_GROUP_NAME")}"
|
||||
}
|
||||
|
||||
variable "tenant_id" {
|
||||
type = string
|
||||
default = "${env("ARM_TENANT_ID")}"
|
||||
}
|
||||
|
||||
variable "virtual_network_name" {
|
||||
type = string
|
||||
default = "${env("VNET_NAME")}"
|
||||
}
|
||||
|
||||
variable "virtual_network_resource_group_name" {
|
||||
type = string
|
||||
default = "${env("VNET_RESOURCE_GROUP")}"
|
||||
}
|
||||
|
||||
variable "virtual_network_subnet_name" {
|
||||
type = string
|
||||
default = "${env("VNET_SUBNET")}"
|
||||
}
|
||||
|
||||
variable "vm_size" {
|
||||
type = string
|
||||
default = "Standard_D4s_v4"
|
||||
}
|
||||
|
||||
source "azure-arm" "build_image" {
|
||||
allowed_inbound_ip_addresses = "${var.allowed_inbound_ip_addresses}"
|
||||
build_resource_group_name = "${var.build_resource_group_name}"
|
||||
client_cert_path = "${var.client_cert_path}"
|
||||
client_id = "${var.client_id}"
|
||||
client_secret = "${var.client_secret}"
|
||||
image_offer = "ubuntu-24_04-lts"
|
||||
image_publisher = "canonical"
|
||||
image_sku = "server-gen1"
|
||||
location = "${var.location}"
|
||||
managed_image_name = "${local.managed_image_name}"
|
||||
managed_image_resource_group_name = "${var.managed_image_resource_group_name}"
|
||||
os_disk_size_gb = "75"
|
||||
os_type = "Linux"
|
||||
private_virtual_network_with_public_ip = "${var.private_virtual_network_with_public_ip}"
|
||||
subscription_id = "${var.subscription_id}"
|
||||
temp_resource_group_name = "${var.temp_resource_group_name}"
|
||||
tenant_id = "${var.tenant_id}"
|
||||
virtual_network_name = "${var.virtual_network_name}"
|
||||
virtual_network_resource_group_name = "${var.virtual_network_resource_group_name}"
|
||||
virtual_network_subnet_name = "${var.virtual_network_subnet_name}"
|
||||
vm_size = "${var.vm_size}"
|
||||
|
||||
dynamic "azure_tag" {
|
||||
for_each = var.azure_tags
|
||||
content {
|
||||
name = azure_tag.key
|
||||
value = azure_tag.value
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
build {
|
||||
sources = ["source.azure-arm.build_image"]
|
||||
|
||||
provisioner "shell" {
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
inline = ["mkdir ${var.image_folder}", "chmod 777 ${var.image_folder}"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
script = "${path.root}/../scripts/build/configure-apt-mock.sh"
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["DEBIAN_FRONTEND=noninteractive"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = [
|
||||
"${path.root}/../scripts/build/install-ms-repos.sh",
|
||||
"${path.root}/../scripts/build/configure-apt-sources.sh",
|
||||
"${path.root}/../scripts/build/configure-apt.sh"
|
||||
]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
script = "${path.root}/../scripts/build/configure-limits.sh"
|
||||
}
|
||||
|
||||
provisioner "file" {
|
||||
destination = "${var.helper_script_folder}"
|
||||
source = "${path.root}/../scripts/helpers"
|
||||
}
|
||||
|
||||
provisioner "file" {
|
||||
destination = "${var.installer_script_folder}"
|
||||
source = "${path.root}/../scripts/build"
|
||||
}
|
||||
|
||||
provisioner "file" {
|
||||
destination = "${var.image_folder}"
|
||||
sources = [
|
||||
"${path.root}/../assets/post-gen",
|
||||
"${path.root}/../scripts/tests",
|
||||
"${path.root}/../scripts/docs-gen"
|
||||
]
|
||||
}
|
||||
|
||||
provisioner "file" {
|
||||
destination = "${var.image_folder}/docs-gen/"
|
||||
source = "${path.root}/../../../helpers/software-report-base"
|
||||
}
|
||||
|
||||
provisioner "file" {
|
||||
destination = "${var.installer_script_folder}/toolset.json"
|
||||
source = "${path.root}/../toolsets/toolset-2404.json"
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
inline = [
|
||||
"mv ${var.image_folder}/docs-gen ${var.image_folder}/SoftwareReport",
|
||||
"mv ${var.image_folder}/post-gen ${var.image_folder}/post-generation"
|
||||
]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["IMAGE_VERSION=${var.image_version}", "IMAGEDATA_FILE=${var.imagedata_file}"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/configure-image-data.sh"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["IMAGE_VERSION=${var.image_version}", "IMAGE_OS=${var.image_os}", "HELPER_SCRIPTS=${var.helper_script_folder}"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/configure-environment.sh"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["DEBIAN_FRONTEND=noninteractive", "HELPER_SCRIPTS=${var.helper_script_folder}", "INSTALLER_SCRIPT_FOLDER=${var.installer_script_folder}"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/install-apt-vital.sh"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["HELPER_SCRIPTS=${var.helper_script_folder}", "INSTALLER_SCRIPT_FOLDER=${var.installer_script_folder}"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/install-powershell.sh"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["HELPER_SCRIPTS=${var.helper_script_folder}", "INSTALLER_SCRIPT_FOLDER=${var.installer_script_folder}"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} pwsh -f {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/Install-PowerShellModules.ps1", "${path.root}/../scripts/build/Install-PowerShellAzModules.ps1"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["HELPER_SCRIPTS=${var.helper_script_folder}", "INSTALLER_SCRIPT_FOLDER=${var.installer_script_folder}", "DEBIAN_FRONTEND=noninteractive"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = [
|
||||
"${path.root}/../scripts/build/install-actions-cache.sh",
|
||||
"${path.root}/../scripts/build/install-runner-package.sh",
|
||||
"${path.root}/../scripts/build/install-apt-common.sh",
|
||||
"${path.root}/../scripts/build/install-azcopy.sh",
|
||||
"${path.root}/../scripts/build/install-azure-cli.sh",
|
||||
"${path.root}/../scripts/build/install-azure-devops-cli.sh",
|
||||
"${path.root}/../scripts/build/install-bicep.sh",
|
||||
"${path.root}/../scripts/build/install-apache.sh",
|
||||
"${path.root}/../scripts/build/install-aws-tools.sh",
|
||||
"${path.root}/../scripts/build/install-clang.sh",
|
||||
"${path.root}/../scripts/build/install-cmake.sh",
|
||||
"${path.root}/../scripts/build/install-codeql-bundle.sh",
|
||||
"${path.root}/../scripts/build/install-container-tools.sh",
|
||||
"${path.root}/../scripts/build/install-dotnetcore-sdk.sh",
|
||||
"${path.root}/../scripts/build/install-gcc-compilers.sh",
|
||||
"${path.root}/../scripts/build/install-gfortran.sh",
|
||||
"${path.root}/../scripts/build/install-git.sh",
|
||||
"${path.root}/../scripts/build/install-git-lfs.sh",
|
||||
"${path.root}/../scripts/build/install-github-cli.sh",
|
||||
"${path.root}/../scripts/build/install-google-chrome.sh",
|
||||
"${path.root}/../scripts/build/install-haskell.sh",
|
||||
"${path.root}/../scripts/build/install-java-tools.sh",
|
||||
"${path.root}/../scripts/build/install-kubernetes-tools.sh",
|
||||
"${path.root}/../scripts/build/install-miniconda.sh",
|
||||
"${path.root}/../scripts/build/install-mysql.sh",
|
||||
"${path.root}/../scripts/build/install-nginx.sh",
|
||||
"${path.root}/../scripts/build/install-nodejs.sh",
|
||||
"${path.root}/../scripts/build/install-bazel.sh",
|
||||
"${path.root}/../scripts/build/install-php.sh",
|
||||
"${path.root}/../scripts/build/install-postgresql.sh",
|
||||
"${path.root}/../scripts/build/install-pulumi.sh",
|
||||
"${path.root}/../scripts/build/install-ruby.sh",
|
||||
"${path.root}/../scripts/build/install-rust.sh",
|
||||
"${path.root}/../scripts/build/install-julia.sh",
|
||||
"${path.root}/../scripts/build/install-selenium.sh",
|
||||
"${path.root}/../scripts/build/install-vcpkg.sh",
|
||||
"${path.root}/../scripts/build/configure-dpkg.sh",
|
||||
"${path.root}/../scripts/build/install-yq.sh",
|
||||
"${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"
|
||||
]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["HELPER_SCRIPTS=${var.helper_script_folder}", "INSTALLER_SCRIPT_FOLDER=${var.installer_script_folder}", "DOCKERHUB_PULL_IMAGES=NO"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/install-docker.sh"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["HELPER_SCRIPTS=${var.helper_script_folder}", "INSTALLER_SCRIPT_FOLDER=${var.installer_script_folder}"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} pwsh -f {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/Install-Toolset.ps1", "${path.root}/../scripts/build/Configure-Toolset.ps1"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["HELPER_SCRIPTS=${var.helper_script_folder}", "INSTALLER_SCRIPT_FOLDER=${var.installer_script_folder}"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/install-pipx-packages.sh"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["HELPER_SCRIPTS=${var.helper_script_folder}", "DEBIAN_FRONTEND=noninteractive", "INSTALLER_SCRIPT_FOLDER=${var.installer_script_folder}"]
|
||||
execute_command = "/bin/sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/install-homebrew.sh"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["HELPER_SCRIPTS=${var.helper_script_folder}"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/configure-snap.sh"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
expect_disconnect = true
|
||||
inline = ["echo 'Reboot VM'", "sudo reboot"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
pause_before = "1m0s"
|
||||
scripts = ["${path.root}/../scripts/build/cleanup.sh"]
|
||||
start_retry_timeout = "10m"
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["IMAGE_VERSION=${var.image_version}", "INSTALLER_SCRIPT_FOLDER=${var.installer_script_folder}"]
|
||||
inline = ["pwsh -File ${var.image_folder}/SoftwareReport/Generate-SoftwareReport.ps1 -OutputDirectory ${var.image_folder}", "pwsh -File ${var.image_folder}/tests/RunAll-Tests.ps1 -OutputDirectory ${var.image_folder}"]
|
||||
}
|
||||
|
||||
provisioner "file" {
|
||||
destination = "${path.root}/../Ubuntu2404-Readme.md"
|
||||
direction = "download"
|
||||
source = "${var.image_folder}/software-report.md"
|
||||
}
|
||||
|
||||
provisioner "file" {
|
||||
destination = "${path.root}/../software-report.json"
|
||||
direction = "download"
|
||||
source = "${var.image_folder}/software-report.json"
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
environment_vars = ["HELPER_SCRIPT_FOLDER=${var.helper_script_folder}", "INSTALLER_SCRIPT_FOLDER=${var.installer_script_folder}", "IMAGE_FOLDER=${var.image_folder}"]
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
scripts = ["${path.root}/../scripts/build/configure-system.sh"]
|
||||
}
|
||||
|
||||
provisioner "shell" {
|
||||
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||
inline = ["sleep 30", "/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync"]
|
||||
}
|
||||
|
||||
}
|
||||
@@ -106,8 +106,11 @@
|
||||
"azureModules": [
|
||||
{
|
||||
"name": "az",
|
||||
"url" : "https://raw.githubusercontent.com/Azure/az-ps-module-versions/main/versions-manifest.json",
|
||||
"versions": [
|
||||
"11.3.1"
|
||||
],
|
||||
"zip_versions": [
|
||||
]
|
||||
}
|
||||
],
|
||||
|
||||
@@ -103,8 +103,11 @@
|
||||
"azureModules": [
|
||||
{
|
||||
"name": "az",
|
||||
"url" : "https://raw.githubusercontent.com/Azure/az-ps-module-versions/main/versions-manifest.json",
|
||||
"versions": [
|
||||
"11.3.1"
|
||||
],
|
||||
"zip_versions": [
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -289,14 +292,16 @@
|
||||
"versions": [
|
||||
"g++-9",
|
||||
"g++-10",
|
||||
"g++-12"
|
||||
"g++-12",
|
||||
"g++-13"
|
||||
]
|
||||
},
|
||||
"gfortran": {
|
||||
"versions": [
|
||||
"gfortran-9",
|
||||
"gfortran-10",
|
||||
"gfortran-12"
|
||||
"gfortran-12",
|
||||
"gfortran-13"
|
||||
]
|
||||
},
|
||||
"php": {
|
||||
|
||||
@@ -1,322 +0,0 @@
|
||||
{
|
||||
"toolcache": [
|
||||
{
|
||||
"name": "Python",
|
||||
"url" : "https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json",
|
||||
"platform" : "linux",
|
||||
"platform_version": "24.04",
|
||||
"arch": "x64",
|
||||
"versions": [
|
||||
"3.9.*",
|
||||
"3.10.*",
|
||||
"3.11.*",
|
||||
"3.12.*"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "PyPy",
|
||||
"arch": "x64",
|
||||
"platform" : "linux",
|
||||
"versions": [
|
||||
"3.9",
|
||||
"3.10"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "node",
|
||||
"url" : "https://raw.githubusercontent.com/actions/node-versions/main/versions-manifest.json",
|
||||
"platform" : "linux",
|
||||
"arch": "x64",
|
||||
"versions": [
|
||||
"16.*",
|
||||
"18.*",
|
||||
"20.*"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "go",
|
||||
"url" : "https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json",
|
||||
"arch": "x64",
|
||||
"platform" : "linux",
|
||||
"versions": [
|
||||
"1.20.*",
|
||||
"1.21.*",
|
||||
"1.22.*"
|
||||
],
|
||||
"default": "1.22.*"
|
||||
},
|
||||
{
|
||||
"name": "Ruby",
|
||||
"platform_version": "24.04",
|
||||
"arch": "x64",
|
||||
"versions": []
|
||||
},
|
||||
{
|
||||
"name": "CodeQL",
|
||||
"platform" : "linux",
|
||||
"arch": "x64",
|
||||
"versions": [
|
||||
"*"
|
||||
]
|
||||
}
|
||||
],
|
||||
"java": {
|
||||
"default": "17",
|
||||
"versions": [ "8", "11", "17", "21"],
|
||||
"maven": "3.8.8"
|
||||
},
|
||||
"android": {
|
||||
"cmdline-tools": "commandlinetools-linux-11076708_latest.zip",
|
||||
"platform_min_version": "34",
|
||||
"build_tools_min_version": "34.0.0",
|
||||
"extra_list": [
|
||||
"android;m2repository",
|
||||
"google;m2repository",
|
||||
"google;google_play_services"
|
||||
],
|
||||
"addon_list": [
|
||||
],
|
||||
"additional_tools": [
|
||||
],
|
||||
"ndk": {
|
||||
"default": "26",
|
||||
"versions": [
|
||||
"24", "25", "26"
|
||||
]
|
||||
}
|
||||
},
|
||||
"powershellModules": [
|
||||
{"name": "Microsoft.Graph"},
|
||||
{"name": "Pester"},
|
||||
{"name": "PSScriptAnalyzer"}
|
||||
],
|
||||
"azureModules": [
|
||||
{
|
||||
"name": "az",
|
||||
"versions": [
|
||||
"11.5.0"
|
||||
]
|
||||
}
|
||||
],
|
||||
"apt": {
|
||||
"vital_packages": [
|
||||
"bzip2",
|
||||
"curl",
|
||||
"g++",
|
||||
"gcc",
|
||||
"make",
|
||||
"jq",
|
||||
"tar",
|
||||
"unzip",
|
||||
"wget"
|
||||
],
|
||||
"common_packages": [
|
||||
"autoconf",
|
||||
"automake",
|
||||
"dbus",
|
||||
"dnsutils",
|
||||
"dpkg",
|
||||
"dpkg-dev",
|
||||
"fakeroot",
|
||||
"fonts-noto-color-emoji",
|
||||
"gnupg2",
|
||||
"iproute2",
|
||||
"iputils-ping",
|
||||
"libyaml-dev",
|
||||
"libtool",
|
||||
"libssl-dev",
|
||||
"locales",
|
||||
"mercurial",
|
||||
"openssh-client",
|
||||
"p7zip-rar",
|
||||
"pkg-config",
|
||||
"python-is-python3",
|
||||
"rpm",
|
||||
"texinfo",
|
||||
"tk",
|
||||
"tzdata",
|
||||
"upx",
|
||||
"xvfb",
|
||||
"xz-utils",
|
||||
"zsync"
|
||||
],
|
||||
"cmd_packages": [
|
||||
"acl",
|
||||
"aria2",
|
||||
"binutils",
|
||||
"bison",
|
||||
"brotli",
|
||||
"coreutils",
|
||||
"file",
|
||||
"findutils",
|
||||
"flex",
|
||||
"ftp",
|
||||
"haveged",
|
||||
"lz4",
|
||||
"m4",
|
||||
"mediainfo",
|
||||
"netcat",
|
||||
"net-tools",
|
||||
"p7zip-full",
|
||||
"parallel",
|
||||
"patchelf",
|
||||
"pigz",
|
||||
"pollinate",
|
||||
"rsync",
|
||||
"shellcheck",
|
||||
"sphinxsearch",
|
||||
"sqlite3",
|
||||
"ssh",
|
||||
"sshpass",
|
||||
"sudo",
|
||||
"swig",
|
||||
"telnet",
|
||||
"time",
|
||||
"zip"
|
||||
]
|
||||
},
|
||||
"brew": [
|
||||
],
|
||||
"docker": {
|
||||
"images": [
|
||||
],
|
||||
"components": [
|
||||
{
|
||||
"package": "containerd.io",
|
||||
"version": "latest"
|
||||
},
|
||||
{
|
||||
"package": "docker-ce-cli",
|
||||
"version": "26.1.0"
|
||||
},
|
||||
{
|
||||
"package": "docker-ce",
|
||||
"version": "26.1.0"
|
||||
}
|
||||
],
|
||||
"plugins": [
|
||||
{
|
||||
"plugin": "buildx",
|
||||
"version": "latest",
|
||||
"asset": "linux-amd64"
|
||||
},
|
||||
{
|
||||
"plugin": "compose",
|
||||
"version": "latest",
|
||||
"asset": "linux-x86_64"
|
||||
}
|
||||
]
|
||||
},
|
||||
"pipx": [
|
||||
{
|
||||
"package": "yamllint",
|
||||
"cmd": "yamllint"
|
||||
},
|
||||
{
|
||||
"package": "ansible-core",
|
||||
"cmd": "ansible"
|
||||
}
|
||||
],
|
||||
"dotnet": {
|
||||
"aptPackages": [
|
||||
"dotnet-sdk-6.0",
|
||||
"dotnet-sdk-7.0",
|
||||
"dotnet-sdk-8.0"
|
||||
],
|
||||
"versions": [
|
||||
"6.0",
|
||||
"7.0",
|
||||
"8.0"
|
||||
],
|
||||
"tools": [
|
||||
{ "name": "nbgv", "test": "nbgv --version", "getversion" : "nbgv --version" }
|
||||
]
|
||||
},
|
||||
"clang": {
|
||||
"versions": [
|
||||
"16",
|
||||
"17",
|
||||
"18"
|
||||
],
|
||||
"default_version": "18"
|
||||
},
|
||||
"gcc": {
|
||||
"versions": [
|
||||
"g++-12",
|
||||
"g++-13",
|
||||
"g++-14"
|
||||
]
|
||||
},
|
||||
"gfortran": {
|
||||
"versions": [
|
||||
"gfortran-12",
|
||||
"gfortran-13",
|
||||
"gfortran-14"
|
||||
]
|
||||
},
|
||||
"php": {
|
||||
"versions": [
|
||||
"8.3"
|
||||
]
|
||||
},
|
||||
"rubygems": [
|
||||
{"name": "fastlane"}
|
||||
],
|
||||
"selenium": {
|
||||
"version": "4"
|
||||
},
|
||||
"node": {
|
||||
"default": "20"
|
||||
},
|
||||
"node_modules": [
|
||||
{
|
||||
"name": "grunt",
|
||||
"command": "grunt"
|
||||
},
|
||||
{
|
||||
"name": "gulp",
|
||||
"command": "gulp"
|
||||
},
|
||||
{
|
||||
"name": "n",
|
||||
"command": "n"
|
||||
},
|
||||
{
|
||||
"name": "parcel",
|
||||
"command": "parcel"
|
||||
},
|
||||
{
|
||||
"name": "typescript",
|
||||
"command": "tsc"
|
||||
},
|
||||
{
|
||||
"name": "newman",
|
||||
"command": "newman"
|
||||
},
|
||||
{
|
||||
"name": "webpack",
|
||||
"command": "webpack"
|
||||
},
|
||||
{
|
||||
"name": "webpack-cli",
|
||||
"command": "webpack-cli"
|
||||
},
|
||||
{
|
||||
"name": "lerna",
|
||||
"command": "lerna"
|
||||
},
|
||||
{
|
||||
"name": "yarn",
|
||||
"command": "yarn"
|
||||
}
|
||||
],
|
||||
"mongodb": {
|
||||
"version": "7.0"
|
||||
},
|
||||
"postgresql": {
|
||||
"version": "16"
|
||||
},
|
||||
"pwsh": {
|
||||
"version": "7.4"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +1,6 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Windows-2022] Multiple VC Build Tools will be removed on May, 13](https://github.com/actions/runner-images/issues/9701) |
|
||||
| [[Ubuntu, Windows] Docker Compose v1 will be removed from images on July, 9](https://github.com/actions/runner-images/issues/9692) |
|
||||
***
|
||||
# Windows Server 2019
|
||||
- OS Version: 10.0.17763 Build 5820
|
||||
- Image Version: 20240514.1.0
|
||||
- OS Version: 10.0.17763 Build 5576
|
||||
- Image Version: 20240407.1.0
|
||||
|
||||
## Windows features
|
||||
- Windows Subsystem for Linux (WSLv1): Enabled
|
||||
@@ -14,27 +9,27 @@
|
||||
|
||||
### Language and Runtime
|
||||
- Bash 5.2.26(1)-release
|
||||
- Go 1.21.10
|
||||
- Julia 1.10.3
|
||||
- Kotlin 1.9.24
|
||||
- Go 1.21.9
|
||||
- Julia 1.10.2
|
||||
- Kotlin 1.9.23
|
||||
- LLVM 16.0.6
|
||||
- Node 18.20.2
|
||||
- Node 18.18.2
|
||||
- Perl 5.32.1
|
||||
- PHP 8.3.7
|
||||
- PHP 8.3.4
|
||||
- Python 3.7.9
|
||||
- Ruby 3.0.7p220
|
||||
- Ruby 3.0.6p216
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.2.2
|
||||
- Composer 2.7.6
|
||||
- Helm 3.14.4
|
||||
- Miniconda 24.3.0 (pre-installed on the image but not added to PATH)
|
||||
- NPM 10.5.0
|
||||
- Composer 2.7.2
|
||||
- Helm 3.14.2
|
||||
- Miniconda 24.1.2 (pre-installed on the image but not added to PATH)
|
||||
- NPM 9.8.1
|
||||
- NuGet 6.9.1.3
|
||||
- pip 24.0 (python 3.7)
|
||||
- Pipx 1.2.1
|
||||
- RubyGems 3.2.33
|
||||
- Vcpkg (build from commit bd2b54836)
|
||||
- Vcpkg (build from commit 5fa0f075e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -45,46 +40,46 @@
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.14
|
||||
- Gradle 8.7
|
||||
- Gradle 8.6
|
||||
- Maven 3.8.7
|
||||
- sbt 1.10.0
|
||||
- sbt 1.9.9
|
||||
|
||||
### Tools
|
||||
- 7zip 23.01
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.24.0
|
||||
- Bazel 7.1.2
|
||||
- Bazel 7.1.1
|
||||
- Bazelisk 1.19.0
|
||||
- Bicep 0.27.1
|
||||
- Bicep 0.26.54
|
||||
- Cabal 3.10.3.0
|
||||
- CMake 3.29.3
|
||||
- CodeQL Action Bundle 2.17.2
|
||||
- CMake 3.29.1
|
||||
- CodeQL Action Bundle 2.17.0
|
||||
- Docker 24.0.7
|
||||
- Docker Compose v1 1.29.2
|
||||
- Docker Compose v2 2.23.3
|
||||
- Docker-wincred 0.8.1
|
||||
- ghc 9.10.1
|
||||
- Git 2.45.1.windows.1
|
||||
- Git LFS 3.5.1
|
||||
- Google Cloud CLI 476.0.0
|
||||
- ghc 9.8.2
|
||||
- Git 2.44.0.windows.1
|
||||
- Git LFS 3.4.1
|
||||
- Google Cloud CLI 471.0.0
|
||||
- ImageMagick 7.1.1-29
|
||||
- InnoSetup 6.2.2
|
||||
- jq 1.7.1
|
||||
- Kind 0.23.0
|
||||
- Kubectl 1.30.0
|
||||
- Kind 0.22.0
|
||||
- Kubectl 1.29.1
|
||||
- Mercurial 5.0
|
||||
- gcc 8.1.0
|
||||
- gdb 8.1
|
||||
- GNU Binutils 2.30
|
||||
- Newman 6.1.2
|
||||
- NSIS 3.10
|
||||
- NSIS 3.09
|
||||
- OpenSSL 1.1.1w
|
||||
- Packer 1.10.2
|
||||
- Parcel 2.12.0
|
||||
- Pulumi 3.116.0
|
||||
- R 4.4.0
|
||||
- Pulumi 3.112.0
|
||||
- R 4.3.3
|
||||
- Service Fabric SDK 9.1.1436.9590
|
||||
- Stack 2.15.7
|
||||
- Stack 2.15.5
|
||||
- Subversion (SVN) 1.14.2
|
||||
- Swig 4.1.1
|
||||
- VSWhere 3.1.7
|
||||
@@ -94,38 +89,38 @@
|
||||
- zstd 1.5.6
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.205
|
||||
- AWS CLI 2.15.48
|
||||
- AWS SAM CLI 1.116.0
|
||||
- Alibaba Cloud CLI 3.0.201
|
||||
- AWS CLI 2.15.36
|
||||
- AWS SAM CLI 1.114.0
|
||||
- AWS Session Manager CLI 1.2.553.0
|
||||
- Azure CLI 2.60.0
|
||||
- Azure CLI 2.59.0
|
||||
- Azure DevOps CLI extension 1.0.0
|
||||
- Cloud Foundry CLI 6.53.0
|
||||
- GitHub CLI 2.49.2
|
||||
- GitHub CLI 2.47.0
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.78.0
|
||||
- Rust 1.78.0
|
||||
- Rustdoc 1.78.0
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.77.1
|
||||
- Rust 1.77.1
|
||||
- Rustdoc 1.77.1
|
||||
- Rustup 1.27.0
|
||||
|
||||
#### Packages
|
||||
- bindgen 0.69.4
|
||||
- cargo-audit 0.20.0
|
||||
- cargo-outdated 0.15.0
|
||||
- cbindgen 0.26.0
|
||||
- Clippy 0.1.78
|
||||
- Clippy 0.1.77
|
||||
- Rustfmt 1.7.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 124.0.6367.208
|
||||
- Chrome Driver 124.0.6367.207
|
||||
- Microsoft Edge 124.0.2478.97
|
||||
- Microsoft Edge Driver 124.0.2478.97
|
||||
- Mozilla Firefox 126.0
|
||||
- Google Chrome 123.0.6312.106
|
||||
- Chrome Driver 123.0.6312.105
|
||||
- Microsoft Edge 123.0.2420.81
|
||||
- Microsoft Edge Driver 123.0.2420.81
|
||||
- Mozilla Firefox 124.0.2
|
||||
- Gecko Driver 0.34.0
|
||||
- IE Driver 4.14.0.0
|
||||
- Selenium server 4.20.0
|
||||
- Selenium server 4.19.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -138,10 +133,10 @@
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| ------------------- | -------------------- |
|
||||
| 8.0.412+8 (default) | JAVA_HOME_8_X64 |
|
||||
| 11.0.23+9 | JAVA_HOME_11_X64 |
|
||||
| 17.0.11+9 | JAVA_HOME_17_X64 |
|
||||
| 21.0.3+9.0 | JAVA_HOME_21_X64 |
|
||||
| 8.0.402+6 (default) | JAVA_HOME_8_X64 |
|
||||
| 11.0.22+7 | JAVA_HOME_11_X64 |
|
||||
| 17.0.10+7 | JAVA_HOME_17_X64 |
|
||||
| 21.0.2+13.0 | JAVA_HOME_21_X64 |
|
||||
|
||||
### Shells
|
||||
| Name | Target |
|
||||
@@ -151,7 +146,7 @@
|
||||
| wslbash.exe | C:\Windows\System32\bash.exe |
|
||||
|
||||
### MSYS2
|
||||
- Pacman 6.1.0
|
||||
- Pacman 6.0.2
|
||||
|
||||
#### Notes
|
||||
```
|
||||
@@ -167,13 +162,13 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### Go
|
||||
- 1.20.14
|
||||
- 1.21.10
|
||||
- 1.22.3
|
||||
- 1.21.9
|
||||
- 1.22.2
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
- 18.20.2
|
||||
- 20.13.1
|
||||
- 18.20.1
|
||||
- 20.12.1
|
||||
|
||||
#### Python
|
||||
- 3.7.9
|
||||
@@ -181,19 +176,19 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 3.9.13
|
||||
- 3.10.11
|
||||
- 3.11.9
|
||||
- 3.12.3
|
||||
- 3.12.2
|
||||
|
||||
#### PyPy
|
||||
- 2.7.18 [PyPy 7.3.16]
|
||||
- 2.7.18 [PyPy 7.3.15]
|
||||
- 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.14 [PyPy 7.3.16]
|
||||
- 3.9.18 [PyPy 7.3.15]
|
||||
- 3.10.13 [PyPy 7.3.15]
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.5
|
||||
- 3.0.6
|
||||
- 3.1.4
|
||||
|
||||
### Databases
|
||||
|
||||
@@ -201,7 +196,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Property | Value |
|
||||
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| ServiceName | postgresql-x64-14 |
|
||||
| Version | 14.12 |
|
||||
| Version | 14.11 |
|
||||
| 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 |
|
||||
@@ -225,17 +220,17 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Name | Version | ConfigFile | ServiceName | ServiceStatus | ListenPort |
|
||||
| ------ | ------- | ------------------------------------- | ----------- | ------------- | ---------- |
|
||||
| Apache | 2.4.55 | C:\tools\Apache24\conf\httpd.conf | Apache | Stopped | 80 |
|
||||
| Nginx | 1.25.5 | C:\tools\nginx-1.25.5\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
| Nginx | 1.25.4 | C:\tools\nginx-1.25.4\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
|
||||
### Visual Studio Enterprise 2019
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | -------------- | -------------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2019 | 16.11.34902.97 | C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise |
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | --------------- | -------------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2019 | 16.11.34601.136 | C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise |
|
||||
|
||||
#### Workloads, components and extensions
|
||||
| Package | Version |
|
||||
| ------------------------------------------------------------------------- | --------------- |
|
||||
| Component.Android.NDK.R16B | 16.11.34827.16 |
|
||||
| Component.Android.NDK.R16B | 16.11.34526.176 |
|
||||
| Component.Android.SDK25.Private | 16.0.28625.61 |
|
||||
| Component.Android.SDK30 | 16.10.31205.252 |
|
||||
| Component.Ant | 1.9.3.8 |
|
||||
@@ -293,7 +288,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.VisualStudio.Component.AppInsights.Tools | 16.5.29515.121 |
|
||||
| Microsoft.VisualStudio.Component.AspNet45 | 16.10.31205.252 |
|
||||
| Microsoft.VisualStudio.Component.Azure.AuthoringTools | 16.11.31827.77 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ClientLibs | 16.11.34829.67 |
|
||||
| Microsoft.VisualStudio.Component.Azure.ClientLibs | 16.0.28315.86 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 16.11.31827.77 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Kubernetes.Tools | 16.10.31205.252 |
|
||||
| Microsoft.VisualStudio.Component.Azure.Powershell | 16.5.29515.121 |
|
||||
@@ -422,7 +417,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 16.10.31303.231 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 16.0.28528.71 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 16.10.31205.180 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 16.11.34827.16 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 16.10.31205.180 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 16.2.29012.281 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 16.11.31603.221 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 16.11.33214.272 |
|
||||
@@ -493,15 +488,15 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 10.0.22621.0
|
||||
|
||||
### .NET Core Tools
|
||||
- .NET Core SDK: 6.0.130, 6.0.203, 6.0.321, 6.0.422, 7.0.119, 7.0.203, 7.0.316, 7.0.409, 8.0.105, 8.0.205, 8.0.300
|
||||
- .NET Core SDK: 6.0.128, 6.0.203, 6.0.321, 6.0.420, 7.0.117, 7.0.203, 7.0.314, 7.0.407
|
||||
- .NET Framework: 4.7.2, 4.8
|
||||
- Microsoft.AspNetCore.App: 6.0.5, 6.0.26, 6.0.30, 7.0.5, 7.0.19, 8.0.5
|
||||
- Microsoft.NETCore.App: 6.0.5, 6.0.26, 6.0.30, 7.0.5, 7.0.19, 8.0.5
|
||||
- Microsoft.WindowsDesktop.App: 6.0.5, 6.0.26, 6.0.30, 7.0.5, 7.0.19, 8.0.5
|
||||
- Microsoft.AspNetCore.App: 6.0.5, 6.0.26, 6.0.28, 7.0.5, 7.0.17
|
||||
- Microsoft.NETCore.App: 6.0.5, 6.0.26, 6.0.28, 7.0.5, 7.0.17
|
||||
- Microsoft.WindowsDesktop.App: 6.0.5, 6.0.26, 6.0.28, 7.0.5, 7.0.17
|
||||
- nbgv 3.6.133+2d32d93cb1
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.2
|
||||
- PowerShell 7.4.1
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 11.3.1
|
||||
@@ -509,10 +504,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- AzureRM: 2.1.0 (Default), 6.13.1
|
||||
- Azure (Cached): 3.8.0.zip, 4.2.1.zip, 5.1.1.zip
|
||||
- AzureRM (Cached): 3.8.0.zip, 4.2.1.zip, 5.1.1.zip, 6.7.0.zip
|
||||
- AWSPowershell: 4.1.579
|
||||
- AWSPowershell: 4.1.553
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.9
|
||||
- Microsoft.Graph: 2.19.0
|
||||
- Microsoft.Graph: 2.16.0
|
||||
- Pester: 3.4.0, 5.5.0
|
||||
- PowerShellGet: 1.0.0.1, 2.2.5
|
||||
- PSScriptAnalyzer: 1.22.0
|
||||
@@ -530,14 +525,14 @@ All other versions are saved but not installed.
|
||||
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 8.0 |
|
||||
| Android SDK Build-tools | 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-34-ext8 (rev 1)<br>android-34-ext11 (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 Platforms | android-34-ext8 (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.1 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.10.2<br>3.18.1<br>3.22.1 |
|
||||
| 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 | 24.0.8215888<br>25.2.9519653<br>26.3.11579264 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653<br>26.2.11394342 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -545,16 +540,15 @@ All other versions are saved but not installed.
|
||||
| ANDROID_HOME | C:\Android\android-sdk |
|
||||
| ANDROID_NDK | C:\Android\android-sdk\ndk\25.2.9519653 |
|
||||
| ANDROID_NDK_HOME | C:\Android\android-sdk\ndk\25.2.9519653 |
|
||||
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\26.3.11579264 |
|
||||
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\26.2.11394342 |
|
||||
| ANDROID_NDK_ROOT | C:\Android\android-sdk\ndk\25.2.9519653 |
|
||||
| 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:21e238b7a784c14fb02717859a9ac0cb39109c15e1a340400d3e3c2cccbc081d | 2024-04-09 |
|
||||
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2019 | sha256:504e7de522e227c46da6408894c19a4454b9979ab06b8577dae1fa5885795450 | 2024-04-09 |
|
||||
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019 | sha256:46e393cbb7c915c504a810639e35f40cb516f8e886e4cbcf8a3b49f86705a070 | 2024-04-09 |
|
||||
| mcr.microsoft.com/windows/nanoserver:1809 | sha256:6f62243adf70b086613cb4b4596c276fe73bab1e5152037eb5b156c915886be8 | 2024-05-10 |
|
||||
| mcr.microsoft.com/windows/servercore:ltsc2019 | sha256:3c97a5c1c32ddb346c190f00a588da6e682a9a8160869f4969edfd7c6e4d1c03 | 2024-05-10 |
|
||||
|
||||
| mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019 | sha256:ac14bbc4ac85bb5d2891ea7e7d39316c6df63b749ef6447644289bb09455951c | 2024-03-12 |
|
||||
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2019 | sha256:78dac4e522f121788fbc834f3ccb6b7f7b19c15a3fbdcbfae60a9b3eee4537c8 | 2024-03-12 |
|
||||
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019 | sha256:e15423aa2e5b51384f2edd40ddd1317371fc43f9483ec055989ef5ceb0c627a5 | 2024-03-12 |
|
||||
| mcr.microsoft.com/windows/nanoserver:1809 | sha256:05f991b57e0095d6ea29c4fa7bef9e614c290de030c8e10e40cebc505871f725 | 2024-03-04 |
|
||||
| mcr.microsoft.com/windows/servercore:ltsc2019 | sha256:00cdad01de658d8d64acf052ddaa19c848e6d7edd214f2d8c2fd3da116fa58b2 | 2024-03-04 |
|
||||
|
||||
@@ -1,11 +1,6 @@
|
||||
| Announcements |
|
||||
|-|
|
||||
| [[Windows-2022] Multiple VC Build Tools will be removed on May, 13](https://github.com/actions/runner-images/issues/9701) |
|
||||
| [[Ubuntu, Windows] Docker Compose v1 will be removed from images on July, 9](https://github.com/actions/runner-images/issues/9692) |
|
||||
***
|
||||
# Windows Server 2022
|
||||
- OS Version: 10.0.20348 Build 2461
|
||||
- Image Version: 20240514.3.0
|
||||
- OS Version: 10.0.20348 Build 2340
|
||||
- Image Version: 20240407.1.0
|
||||
|
||||
## Windows features
|
||||
- Windows Subsystem for Linux (WSLv1): Enabled
|
||||
@@ -14,27 +9,27 @@
|
||||
|
||||
### Language and Runtime
|
||||
- Bash 5.2.26(1)-release
|
||||
- Go 1.21.10
|
||||
- Julia 1.10.3
|
||||
- Kotlin 1.9.24
|
||||
- Go 1.21.9
|
||||
- Julia 1.10.2
|
||||
- Kotlin 1.9.23
|
||||
- LLVM 16.0.6
|
||||
- Node 18.20.2
|
||||
- Node 18.18.2
|
||||
- Perl 5.32.1
|
||||
- PHP 8.3.7
|
||||
- PHP 8.3.4
|
||||
- Python 3.9.13
|
||||
- Ruby 3.0.7p220
|
||||
- Ruby 3.0.6p216
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.2.2
|
||||
- Composer 2.7.6
|
||||
- Helm 3.14.4
|
||||
- Miniconda 24.3.0 (pre-installed on the image but not added to PATH)
|
||||
- NPM 10.5.0
|
||||
- Composer 2.7.2
|
||||
- Helm 3.14.2
|
||||
- Miniconda 24.1.2 (pre-installed on the image but not added to PATH)
|
||||
- NPM 9.8.1
|
||||
- NuGet 6.9.1.3
|
||||
- pip 24.0 (python 3.9)
|
||||
- Pipx 1.5.0
|
||||
- RubyGems 3.2.33
|
||||
- Vcpkg (build from commit bd2b54836)
|
||||
- Vcpkg (build from commit 5fa0f075e)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -45,44 +40,44 @@
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.14
|
||||
- Gradle 8.7
|
||||
- Gradle 8.6
|
||||
- Maven 3.8.7
|
||||
- sbt 1.10.0
|
||||
- sbt 1.9.9
|
||||
|
||||
### Tools
|
||||
- 7zip 23.01
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.24.0
|
||||
- Bazel 7.1.2
|
||||
- Bazel 7.1.1
|
||||
- Bazelisk 1.19.0
|
||||
- Bicep 0.27.1
|
||||
- Bicep 0.26.54
|
||||
- Cabal 3.10.3.0
|
||||
- CMake 3.29.3
|
||||
- CodeQL Action Bundle 2.17.2
|
||||
- CMake 3.29.1
|
||||
- CodeQL Action Bundle 2.17.0
|
||||
- Docker 24.0.7
|
||||
- Docker Compose v1 1.29.2
|
||||
- Docker Compose v2 2.23.3
|
||||
- Docker-wincred 0.8.1
|
||||
- ghc 9.10.1
|
||||
- Git 2.45.1.windows.1
|
||||
- Git LFS 3.5.1
|
||||
- ghc 9.8.2
|
||||
- Git 2.44.0.windows.1
|
||||
- Git LFS 3.4.1
|
||||
- ImageMagick 7.1.1-29
|
||||
- InnoSetup 6.2.2
|
||||
- jq 1.7.1
|
||||
- Kind 0.23.0
|
||||
- Kubectl 1.30.0
|
||||
- Kind 0.22.0
|
||||
- Kubectl 1.29.1
|
||||
- Mercurial 5.0
|
||||
- gcc 12.2.0
|
||||
- gdb 11.2
|
||||
- GNU Binutils 2.39
|
||||
- Newman 6.1.2
|
||||
- NSIS 3.10
|
||||
- NSIS 3.09
|
||||
- OpenSSL 1.1.1w
|
||||
- Packer 1.10.2
|
||||
- Pulumi 3.116.0
|
||||
- R 4.4.0
|
||||
- Pulumi 3.112.0
|
||||
- R 4.3.3
|
||||
- Service Fabric SDK 9.1.1436.9590
|
||||
- Stack 2.15.7
|
||||
- Stack 2.15.5
|
||||
- Subversion (SVN) 1.14.2
|
||||
- Swig 4.1.1
|
||||
- VSWhere 3.1.7
|
||||
@@ -92,37 +87,37 @@
|
||||
- zstd 1.5.6
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.0.205
|
||||
- AWS CLI 2.15.48
|
||||
- AWS SAM CLI 1.116.0
|
||||
- Alibaba Cloud CLI 3.0.201
|
||||
- AWS CLI 2.15.36
|
||||
- AWS SAM CLI 1.114.0
|
||||
- AWS Session Manager CLI 1.2.553.0
|
||||
- Azure CLI 2.60.0
|
||||
- Azure CLI 2.59.0
|
||||
- Azure DevOps CLI extension 1.0.0
|
||||
- GitHub CLI 2.49.2
|
||||
- GitHub CLI 2.47.0
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.78.0
|
||||
- Rust 1.78.0
|
||||
- Rustdoc 1.78.0
|
||||
- Rustup 1.27.1
|
||||
- Cargo 1.77.1
|
||||
- Rust 1.77.1
|
||||
- Rustdoc 1.77.1
|
||||
- Rustup 1.27.0
|
||||
|
||||
#### Packages
|
||||
- bindgen 0.69.4
|
||||
- cargo-audit 0.20.0
|
||||
- cargo-outdated 0.15.0
|
||||
- cbindgen 0.26.0
|
||||
- Clippy 0.1.78
|
||||
- Clippy 0.1.77
|
||||
- Rustfmt 1.7.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 124.0.6367.208
|
||||
- Chrome Driver 124.0.6367.207
|
||||
- Microsoft Edge 124.0.2478.97
|
||||
- Microsoft Edge Driver 124.0.2478.97
|
||||
- Mozilla Firefox 126.0
|
||||
- Google Chrome 123.0.6312.106
|
||||
- Chrome Driver 123.0.6312.105
|
||||
- Microsoft Edge 123.0.2420.81
|
||||
- Microsoft Edge Driver 123.0.2420.81
|
||||
- Mozilla Firefox 124.0.2
|
||||
- Gecko Driver 0.34.0
|
||||
- IE Driver 4.14.0.0
|
||||
- Selenium server 4.20.0
|
||||
- Selenium server 4.19.0
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -135,10 +130,10 @@
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
| ------------------- | -------------------- |
|
||||
| 8.0.412+8 (default) | JAVA_HOME_8_X64 |
|
||||
| 11.0.23+9 | JAVA_HOME_11_X64 |
|
||||
| 17.0.11+9 | JAVA_HOME_17_X64 |
|
||||
| 21.0.3+9.0 | JAVA_HOME_21_X64 |
|
||||
| 8.0.402+6 (default) | JAVA_HOME_8_X64 |
|
||||
| 11.0.22+7 | JAVA_HOME_11_X64 |
|
||||
| 17.0.10+7 | JAVA_HOME_17_X64 |
|
||||
| 21.0.2+13.0 | JAVA_HOME_21_X64 |
|
||||
|
||||
### Shells
|
||||
| Name | Target |
|
||||
@@ -148,7 +143,7 @@
|
||||
| wslbash.exe | C:\Windows\System32\bash.exe |
|
||||
|
||||
### MSYS2
|
||||
- Pacman 6.1.0
|
||||
- Pacman 6.0.2
|
||||
|
||||
#### Notes
|
||||
```
|
||||
@@ -161,13 +156,13 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### Go
|
||||
- 1.20.14
|
||||
- 1.21.10
|
||||
- 1.22.3
|
||||
- 1.21.9
|
||||
- 1.22.2
|
||||
|
||||
#### Node.js
|
||||
- 16.20.2
|
||||
- 18.20.2
|
||||
- 20.13.1
|
||||
- 18.20.1
|
||||
- 20.12.1
|
||||
|
||||
#### Python
|
||||
- 3.7.9
|
||||
@@ -175,18 +170,18 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 3.9.13
|
||||
- 3.10.11
|
||||
- 3.11.9
|
||||
- 3.12.3
|
||||
- 3.12.2
|
||||
|
||||
#### PyPy
|
||||
- 2.7.18 [PyPy 7.3.16]
|
||||
- 2.7.18 [PyPy 7.3.15]
|
||||
- 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.16]
|
||||
- 3.9.18 [PyPy 7.3.15]
|
||||
- 3.10.13 [PyPy 7.3.15]
|
||||
|
||||
#### Ruby
|
||||
- 3.0.7
|
||||
- 3.1.5
|
||||
- 3.0.6
|
||||
- 3.1.4
|
||||
|
||||
### Databases
|
||||
|
||||
@@ -194,7 +189,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Property | Value |
|
||||
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| ServiceName | postgresql-x64-14 |
|
||||
| Version | 14.12 |
|
||||
| Version | 14.11 |
|
||||
| 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 |
|
||||
@@ -210,7 +205,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
### Database tools
|
||||
- Azure CosmosDb Emulator 2.14.16.0
|
||||
- DacFx 162.2.111.2
|
||||
- MySQL 8.0.37.0
|
||||
- MySQL 8.0.36.0
|
||||
- SQL OLEDB Driver 18.6.7.0
|
||||
- SQLPS 1.0
|
||||
|
||||
@@ -218,12 +213,12 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Name | Version | ConfigFile | ServiceName | ServiceStatus | ListenPort |
|
||||
| ------ | ------- | ------------------------------------- | ----------- | ------------- | ---------- |
|
||||
| Apache | 2.4.55 | C:\tools\Apache24\conf\httpd.conf | Apache | Stopped | 80 |
|
||||
| Nginx | 1.25.5 | C:\tools\nginx-1.25.5\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
| Nginx | 1.25.4 | C:\tools\nginx-1.25.4\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
|
||||
### Visual Studio Enterprise 2022
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | ------------- | -------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2022 | 17.9.34902.65 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
|
||||
| Visual Studio Enterprise 2022 | 17.9.34723.18 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
|
||||
|
||||
#### Workloads, components and extensions
|
||||
| Package | Version |
|
||||
@@ -254,7 +249,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Component.VSInstallerProjects2022 | 2.0.1 |
|
||||
| Component.WixToolset.VisualStudioExtension.Dev17 | 1.0.0.22 |
|
||||
| Component.WixToolset.VisualStudioExtension.Schemas3 | 1.0.0.22 |
|
||||
| Component.Xamarin | 17.9.34902.65 |
|
||||
| Component.Xamarin | 17.9.34511.75 |
|
||||
| Component.Xamarin.RemotedSimulator | 17.9.34511.75 |
|
||||
| ios | 17.2.8004.0 |
|
||||
| maccatalyst | 17.2.8004.0 |
|
||||
@@ -284,20 +279,20 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.9.34511.75 |
|
||||
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.9.34511.75 |
|
||||
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.9.34511.75 |
|
||||
| microsoft.net.runtime.android | 8.0.524.21615 |
|
||||
| microsoft.net.runtime.android.aot | 8.0.524.21615 |
|
||||
| microsoft.net.runtime.android.aot.net7 | 8.0.524.21615 |
|
||||
| microsoft.net.runtime.android.net7 | 8.0.524.21615 |
|
||||
| microsoft.net.runtime.ios | 8.0.524.21615 |
|
||||
| microsoft.net.runtime.ios.net7 | 8.0.524.21615 |
|
||||
| microsoft.net.runtime.maccatalyst | 8.0.524.21615 |
|
||||
| microsoft.net.runtime.maccatalyst.net7 | 8.0.524.21615 |
|
||||
| microsoft.net.runtime.mono.tooling | 8.0.524.21615 |
|
||||
| microsoft.net.runtime.mono.tooling.net7 | 8.0.524.21615 |
|
||||
| microsoft.net.sdk.emscripten | 8.0.10.21103 |
|
||||
| microsoft.net.runtime.android | 8.0.324.11423 |
|
||||
| microsoft.net.runtime.android.aot | 8.0.324.11423 |
|
||||
| microsoft.net.runtime.android.aot.net7 | 8.0.324.11423 |
|
||||
| microsoft.net.runtime.android.net7 | 8.0.324.11423 |
|
||||
| microsoft.net.runtime.ios | 8.0.324.11423 |
|
||||
| microsoft.net.runtime.ios.net7 | 8.0.324.11423 |
|
||||
| microsoft.net.runtime.maccatalyst | 8.0.324.11423 |
|
||||
| microsoft.net.runtime.maccatalyst.net7 | 8.0.324.11423 |
|
||||
| microsoft.net.runtime.mono.tooling | 8.0.324.11423 |
|
||||
| microsoft.net.runtime.mono.tooling.net7 | 8.0.324.11423 |
|
||||
| microsoft.net.sdk.emscripten | 8.0.10.10803 |
|
||||
| Microsoft.NetCore.Component.DevelopmentTools | 17.9.34511.75 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 17.9.34902.65 |
|
||||
| Microsoft.NetCore.Component.SDK | 17.9.34902.65 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 17.9.34629.179 |
|
||||
| Microsoft.NetCore.Component.SDK | 17.9.34629.179 |
|
||||
| Microsoft.NetCore.Component.Web | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.AspNet | 17.9.34511.75 |
|
||||
@@ -364,7 +359,59 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC.ARM | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC.ARM.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC.ARM64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.x86.x64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.x86.x64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.ARM | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.ARM.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.ARM64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL.ARM | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL.ARM.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL.ARM64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC.ARM | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC.ARM.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC.ARM64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.x86.x64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.38.17.8.x86.x64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.ARM | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.ARM.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.ARM64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL.ARM | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL.ARM.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL.ARM64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC.ARM | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC.ARM.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC.ARM64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.x86.x64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.39.17.9.x86.x64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.ASAN | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM | 17.9.34511.75 |
|
||||
@@ -397,6 +444,16 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.v141.ARM | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.v141.ARM.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.v141.ARM64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.v141.ARM64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.v141.ATL | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.v141.ATL.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.v141.MFC | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.v141.MFC.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.v141.x86.x64 | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VC.v141.x86.x64.Spectre | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.Vcpkg | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.VSSDK | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Component.Wcf.Tooling | 17.9.34511.75 |
|
||||
@@ -453,14 +510,14 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.VisualStudio.Workload.Python | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Workload.Universal | 17.9.34511.75 |
|
||||
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 17.9.34511.75 |
|
||||
| runtimes.ios | 8.0.524.21615 |
|
||||
| runtimes.ios.net7 | 8.0.524.21615 |
|
||||
| runtimes.maccatalyst | 8.0.524.21615 |
|
||||
| runtimes.maccatalyst.net7 | 8.0.524.21615 |
|
||||
| wasm.tools | 8.0.524.21615 |
|
||||
| runtimes.ios | 8.0.324.11423 |
|
||||
| runtimes.ios.net7 | 8.0.324.11423 |
|
||||
| runtimes.maccatalyst | 8.0.324.11423 |
|
||||
| runtimes.maccatalyst.net7 | 8.0.324.11423 |
|
||||
| wasm.tools | 8.0.324.11423 |
|
||||
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 3.0.4 |
|
||||
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 3.0.1 |
|
||||
| SSIS.MicrosoftDataToolsIntegrationServices | 1.4 |
|
||||
| SSIS.MicrosoftDataToolsIntegrationServices | 1.3.2 |
|
||||
| VisualStudioClient.MicrosoftVisualStudio2022InstallerProjects | 2.0.1 |
|
||||
| Windows Driver Kit | 10.1.22621.2428 |
|
||||
| Windows Driver Kit Visual Studio Extension | 10.0.22621.0 |
|
||||
@@ -487,15 +544,15 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 10.0.22621.0
|
||||
|
||||
### .NET Core Tools
|
||||
- .NET Core SDK: 6.0.130, 6.0.203, 6.0.321, 6.0.422, 7.0.119, 7.0.203, 7.0.316, 7.0.409, 8.0.205
|
||||
- .NET Core SDK: 6.0.128, 6.0.203, 6.0.321, 6.0.420, 7.0.117, 7.0.203, 7.0.314, 7.0.407, 8.0.202
|
||||
- .NET Framework: 4.8, 4.8.1
|
||||
- Microsoft.AspNetCore.App: 6.0.5, 6.0.26, 6.0.29, 6.0.30, 7.0.5, 7.0.19, 8.0.5
|
||||
- Microsoft.NETCore.App: 6.0.5, 6.0.26, 6.0.29, 6.0.30, 7.0.5, 7.0.19, 8.0.5
|
||||
- Microsoft.WindowsDesktop.App: 6.0.5, 6.0.26, 6.0.30, 7.0.5, 7.0.19, 8.0.5
|
||||
- Microsoft.AspNetCore.App: 6.0.5, 6.0.26, 6.0.27, 6.0.28, 7.0.5, 7.0.17, 8.0.3
|
||||
- Microsoft.NETCore.App: 6.0.5, 6.0.26, 6.0.27, 6.0.28, 7.0.5, 7.0.17, 8.0.3
|
||||
- Microsoft.WindowsDesktop.App: 6.0.5, 6.0.26, 6.0.28, 7.0.5, 7.0.17, 8.0.3
|
||||
- nbgv 3.6.133+2d32d93cb1
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.2
|
||||
- PowerShell 7.4.1
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 11.3.1
|
||||
@@ -503,10 +560,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- AzureRM: 2.1.0 (Default), 6.13.1
|
||||
- Azure (Cached): 3.8.0.zip, 4.2.1.zip, 5.1.1.zip
|
||||
- AzureRM (Cached): 3.8.0.zip, 4.2.1.zip, 5.1.1.zip, 6.7.0.zip
|
||||
- AWSPowershell: 4.1.578
|
||||
- AWSPowershell: 4.1.553
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.9
|
||||
- Microsoft.Graph: 2.19.0
|
||||
- Microsoft.Graph: 2.16.0
|
||||
- Pester: 3.4.0, 5.5.0
|
||||
- PowerShellGet: 1.0.0.1, 2.2.5
|
||||
- PSScriptAnalyzer: 1.22.0
|
||||
@@ -525,13 +582,13 @@ All other versions are saved but not installed.
|
||||
| Android Command Line Tools | 8.0 |
|
||||
| Android Emulator | 31.2.9 |
|
||||
| Android SDK Build-tools | 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-34-ext8 (rev 1)<br>android-34-ext11 (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 Platforms | android-34-ext8 (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.1 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.18.1<br>3.22.1 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653<br>26.3.11579264 |
|
||||
| NDK | 24.0.8215888<br>25.2.9519653<br>26.2.11394342 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -539,16 +596,15 @@ All other versions are saved but not installed.
|
||||
| ANDROID_HOME | C:\Android\android-sdk |
|
||||
| ANDROID_NDK | C:\Android\android-sdk\ndk\25.2.9519653 |
|
||||
| ANDROID_NDK_HOME | C:\Android\android-sdk\ndk\25.2.9519653 |
|
||||
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\26.3.11579264 |
|
||||
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\26.2.11394342 |
|
||||
| ANDROID_NDK_ROOT | C:\Android\android-sdk\ndk\25.2.9519653 |
|
||||
| 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:9463c19c08f8855d5520f488e858f9c0ca832c04740ab1a3e204c9fbfab4581b | 2024-04-09 |
|
||||
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2022 | sha256:b732b5349aa99af46c02c2cc25e162d083cbe62f455875b35d5c3053c1cd75ce | 2024-04-09 |
|
||||
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2022 | sha256:51c056c03b12aa8004e6d7909e5bdf7b699502d89fc8fc861edbbbcd78cf16bd | 2024-04-09 |
|
||||
| mcr.microsoft.com/windows/nanoserver:ltsc2022 | sha256:ac6a7571d5a404398e2f734d92f9b8f580a4fe1e6ae1820a61c5f138b1bdeff3 | 2024-05-10 |
|
||||
| mcr.microsoft.com/windows/servercore:ltsc2022 | sha256:45952938708fbde6ec0b5b94de68bcdec3f8c838be018536b1e9e5bd95e6b943 | 2024-05-10 |
|
||||
|
||||
| mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2022 | sha256:860454405335b1f0dd84a8b5fd2bb3a5e0289cc78a71d4efd4055eefaab13653 | 2024-03-12 |
|
||||
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2022 | sha256:4d29a1431d9bc6b7ec0f1b64289a8810d25790f86abe55050729a6485c8cf1d9 | 2024-03-12 |
|
||||
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2022 | sha256:76d2dd2054a18f47d9c690f9d0047e319d7b68aa4e72ee7aae46e3637042c165 | 2024-03-12 |
|
||||
| mcr.microsoft.com/windows/nanoserver:ltsc2022 | sha256:6e6053f0358f9522d2d14693f9bc152f47fe04c82c53dc8c6d127a5a823c8720 | 2024-03-05 |
|
||||
| mcr.microsoft.com/windows/servercore:ltsc2022 | sha256:6b8781cab588a2858d1aba2c5d5456e79c823e04d666d59d0732dab1273dc8fb | 2024-03-05 |
|
||||
|
||||
@@ -15,7 +15,7 @@ New-Item -ItemType 'Directory' -Path $azureCliExtensionPath | Out-Null
|
||||
|
||||
Install-Binary -Type MSI `
|
||||
-Url 'https://aka.ms/installazurecliwindowsx64' `
|
||||
-ExpectedSignature 'C2048FB509F1C37A8C3E9EC6648118458AA01780'
|
||||
-ExpectedSignature 'F9A7CF9FBE13BAC767F4781061332DA6E8B4E0EE'
|
||||
|
||||
Update-Environment
|
||||
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
Install-Binary -Type MSI `
|
||||
-Url "https://aka.ms/cosmosdb-emulator" `
|
||||
-ExpectedSHA256Sum "34D8E1968A868CEBBC31D1484C473FC61D3174D6C3B9AB71D4CE94F6618D7670"
|
||||
-ExpectedSignature "C2048FB509F1C37A8C3E9EC6648118458AA01780"
|
||||
|
||||
Invoke-PesterTests -TestFile "Tools" -TestName "Azure Cosmos DB Emulator"
|
||||
|
||||
@@ -13,7 +13,7 @@ Add-MachinePathItem 'C:\ProgramData\Chocolatey\bin'
|
||||
Update-Environment
|
||||
|
||||
# Verify and run choco installer
|
||||
$signatureThumbprint = "B009C875F4E10FFBC62B785BAF4FC4D6BC2D5711"
|
||||
$signatureThumbprint = "83AC7D88C66CB8680BCE802E0F0F5C179722764B"
|
||||
$installScriptPath = Invoke-DownloadWithRetry 'https://chocolatey.org/install.ps1'
|
||||
Test-FileSignature -Path $installScriptPath -ExpectedThumbprint $signatureThumbprint
|
||||
Invoke-Expression $installScriptPath
|
||||
|
||||
@@ -12,7 +12,7 @@ Install-Binary `
|
||||
Write-Host "Adding the firewall rule for Google update blocking..."
|
||||
New-NetFirewallRule -DisplayName "BlockGoogleUpdate" -Direction Outbound -Action Block -Program "C:\Program Files (x86)\Google\Update\GoogleUpdate.exe"
|
||||
|
||||
$googleServices = Get-Service -Name "GoogleUpdater*"
|
||||
$googleServices = @('gupdate', 'gupdatem') | Get-Service
|
||||
Stop-Service $googleServices
|
||||
$googleServices.WaitForStatus('Stopped', "00:01:00")
|
||||
$googleServices | Set-Service -StartupType Disabled
|
||||
|
||||
@@ -41,8 +41,6 @@ if ($LASTEXITCODE -ne 0) {
|
||||
|
||||
# Disable GCM machine-wide
|
||||
[Environment]::SetEnvironmentVariable("GCM_INTERACTIVE", "Never", "Machine")
|
||||
# Revert to the old behaviour and avoid the Git LFS problems (https://github.blog/2024-05-14-securing-git-addressing-5-new-vulnerabilities/)
|
||||
[Environment]::SetEnvironmentVariable("GIT_CLONE_PROTECTION_ACTIVE", "false", "Machine")
|
||||
|
||||
# Add to PATH
|
||||
Add-MachinePathItem "C:\Program Files\Git\bin"
|
||||
|
||||
@@ -44,6 +44,15 @@ Function Install-VisualStudio {
|
||||
Test-FileSignature -Path $bootstrapperFilePath -ExpectedThumbprint $SignatureThumbprint
|
||||
|
||||
try {
|
||||
Write-Host "Enable short name support on Windows needed for Xamarin Android AOT, defaults appear to have been changed in Azure VMs"
|
||||
$shortNameEnableProcess = Start-Process -FilePath fsutil.exe -ArgumentList ('8dot3name', 'set', '0') -Wait -PassThru
|
||||
|
||||
$shortNameEnableExitCode = $shortNameEnableProcess.ExitCode
|
||||
if ($shortNameEnableExitCode -ne 0) {
|
||||
Write-Host "Enabling short name support on Windows failed. This needs to be enabled prior to VS 2017 install for Xamarin Andriod AOT to work."
|
||||
exit $shortNameEnableExitCode
|
||||
}
|
||||
|
||||
$responseData = @{
|
||||
"channelUri" = $channelUri
|
||||
"channelId" = $channelId
|
||||
|
||||
@@ -28,11 +28,14 @@ Describe "Chrome" {
|
||||
$versionInfo | Should -Not -BeNullOrEmpty
|
||||
}
|
||||
|
||||
It "GoogleUpdater services is stopped" {
|
||||
$services = Get-Service -Name "GoogleUpdater*"
|
||||
foreach ($svc in $services) {
|
||||
$svc.Status | Should -BeExactly 'Stopped'
|
||||
}
|
||||
It "gupdate service is stopped" {
|
||||
$svc = Get-Service -Name gupdate
|
||||
$svc.Status | Should -BeExactly Stopped
|
||||
}
|
||||
|
||||
It "gupdatem service is stopped" {
|
||||
$svc = Get-Service -Name gupdatem
|
||||
$svc.Status | Should -BeExactly Stopped
|
||||
}
|
||||
|
||||
It "BlockGoogleUpdate firewall rule exists" {
|
||||
|
||||
@@ -22,8 +22,4 @@ Describe "Git" {
|
||||
It "GCM_INTERACTIVE environment variable should be equal Never" {
|
||||
$env:GCM_INTERACTIVE | Should -BeExactly Never
|
||||
}
|
||||
|
||||
It "GIT_CLONE_PROTECTION_ACTIVE environment variable should be equal false" {
|
||||
$env:GIT_CLONE_PROTECTION_ACTIVE | Should -BeExactly false
|
||||
}
|
||||
}
|
||||
|
||||
@@ -410,8 +410,7 @@
|
||||
"dotnet": {
|
||||
"versions": [
|
||||
"6.0",
|
||||
"7.0",
|
||||
"8.0"
|
||||
"7.0"
|
||||
],
|
||||
"tools": [
|
||||
{ "name": "nbgv", "test": "nbgv --version", "getversion": "nbgv --version" }
|
||||
@@ -463,7 +462,7 @@
|
||||
"signature": "F2D7C28591847BB2CB2B1C2A0C59459FDC728A38"
|
||||
},
|
||||
"nsis": {
|
||||
"version": "3.10"
|
||||
"version": "3.09"
|
||||
},
|
||||
"php": {
|
||||
"version": "8.3"
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
"subversion" : "17",
|
||||
"edition" : "Enterprise",
|
||||
"channel": "release",
|
||||
"signature": "C2048FB509F1C37A8C3E9EC6648118458AA01780",
|
||||
"signature": "F9A7CF9FBE13BAC767F4781061332DA6E8B4E0EE",
|
||||
"workloads": [
|
||||
"Component.Dotfuscator",
|
||||
"Component.Linux.CMake",
|
||||
@@ -207,31 +207,85 @@
|
||||
"Microsoft.VisualStudio.Component.VC.DiagnosticTools",
|
||||
"Microsoft.VisualStudio.Component.VC.Llvm.Clang",
|
||||
"Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset",
|
||||
"Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest",
|
||||
"Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest",
|
||||
"Microsoft.VisualStudio.Component.VC.Tools.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.Tools.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.Tools.ARM64EC",
|
||||
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
|
||||
"Microsoft.VisualStudio.Component.VC.Modules.x86.x64",
|
||||
"Microsoft.VisualStudio.Component.VC.Redist.MSM",
|
||||
"Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest",
|
||||
"Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest",
|
||||
"Microsoft.VisualStudio.Component.VC.Tools.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.MFC.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.MFC.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.MFC.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.ATLMFC",
|
||||
"Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.ATL",
|
||||
"Microsoft.VisualStudio.Component.VC.ATL.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.ATL.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.ATL.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.ASAN",
|
||||
"Microsoft.VisualStudio.Component.VC.MFC.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.Modules.x86.x64",
|
||||
"Microsoft.VisualStudio.Component.VC.Tools.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.Tools.ARM64EC",
|
||||
"Microsoft.VisualStudio.Component.VC.Redist.MSM",
|
||||
"Microsoft.VisualStudio.Component.VC.v141.x86.x64",
|
||||
"Microsoft.VisualStudio.Component.VC.v141.x86.x64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.v141.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.v141.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.v141.MFC",
|
||||
"Microsoft.VisualStudio.Component.VC.v141.MFC.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.x86.x64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.x86.x64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.29.16.11.MFC.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.MFC.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.x86.x64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.x86.x64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.ATL.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC.ARM",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC.ARM.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC.ARM64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC.ARM64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.MFC.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.x86.x64",
|
||||
"Microsoft.VisualStudio.Component.VC.14.39.17.9.x86.x64.Spectre",
|
||||
"Microsoft.VisualStudio.Component.VC.ATLMFC",
|
||||
"Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre",
|
||||
"Microsoft.VisualStudio.Component.Windows10SDK.19041",
|
||||
"Microsoft.VisualStudio.Component.Windows10SDK.20348",
|
||||
"Microsoft.VisualStudio.Component.Windows11SDK.22000",
|
||||
@@ -364,7 +418,7 @@
|
||||
"signature": "F2D7C28591847BB2CB2B1C2A0C59459FDC728A38"
|
||||
},
|
||||
"nsis": {
|
||||
"version": "3.10"
|
||||
"version": "3.09"
|
||||
},
|
||||
"llvm": {
|
||||
"version": "16"
|
||||
|
||||
Reference in New Issue
Block a user