This commit is contained in:
Nikita Bykov
2020-10-08 20:39:45 +03:00
28 changed files with 397 additions and 320 deletions

View File

@@ -24,9 +24,21 @@ jobs:
with: with:
github-token: ${{secrets.GITHUB_TOKEN}} github-token: ${{secrets.GITHUB_TOKEN}}
script: | script: |
github.issues.addLabels({ const issueLabels = await github.issues.listLabelsOnIssue({
issue_number: context.issue.number, issue_number: context.issue.number,
owner: context.repo.owner, owner: context.repo.owner,
repo: context.repo.repo, repo: context.repo.repo
labels: ['needs triage'] });
})
const isAnnouncement = issueLabels.data && issueLabels.data
.map(label => label.name)
.includes('announcement');
if (!isAnnouncement) {
github.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['needs triage']
})
}

View File

@@ -20,10 +20,10 @@ Function Get-PackerTemplatePath {
switch ($ImageType) { switch ($ImageType) {
([ImageType]::Windows2016) { ([ImageType]::Windows2016) {
$relativePath = "\images\win\Windows2016-Azure.json" $relativePath = "\images\win\windows2016.json"
} }
([ImageType]::Windows2019) { ([ImageType]::Windows2019) {
$relativePath = "\images\win\Windows2019-Azure.json" $relativePath = "\images\win\windows2019.json"
} }
([ImageType]::Ubuntu1604) { ([ImageType]::Ubuntu1604) {
$relativePath = "\images\linux\ubuntu1604.json" $relativePath = "\images\linux\ubuntu1604.json"

View File

@@ -16,5 +16,5 @@ pr:
jobs: jobs:
- template: image-generation.yml - template: image-generation.yml
parameters: parameters:
image_type: Windows2016-Azure image_type: windows2016
image_readme_name: Windows2016-Readme.md image_readme_name: Windows2016-Readme.md

View File

@@ -16,5 +16,5 @@ pr:
jobs: jobs:
- template: image-generation.yml - template: image-generation.yml
parameters: parameters:
image_type: Windows2019-Azure image_type: windows2019
image_readme_name: Windows2019-Readme.md image_readme_name: Windows2019-Readme.md

View File

@@ -105,3 +105,14 @@ jobs:
failTaskOnFailedTests: true failTaskOnFailedTests: true
displayName: Publish test results displayName: Publish test results
condition: always() condition: always()
- task: PowerShell@2
displayName: 'Destroy VM (if build canceled only)'
condition: eq(variables['Agent.JobStatus'], 'Canceled')
inputs:
targetType: 'filePath'
filePath: ./images.CI/macos/destroy-vm.ps1
arguments: -VMName "${{ variables.VirtualMachineName }}" `
-VIServer "$(vcenter-server-v2)" `
-VIUserName "$(vcenter-username-v2)" `
-VIPassword "$(vcenter-password-v2)"

View File

@@ -0,0 +1,89 @@
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[string]$VMName,
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[string]$VIServer,
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[string]$VIUserName,
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[string]$VIPassword
)
$ProgressPreference = "SilentlyContinue"
$WarningPreference = "SilentlyContinue"
# connection to a vCenter Server system
try
{
$null = Set-PowerCLIConfiguration -Scope Session -InvalidCertificateAction Ignore -ParticipateInCEIP $false -Confirm:$false -WebOperationTimeoutSeconds 600
$securePassword = ConvertTo-SecureString -String $VIPassword -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential($VIUserName, $securePassword)
$null = Connect-VIServer -Server $VIServer -Credential $cred -ErrorAction Stop
Write-Host "Connection to the vSphere server has been established"
}
catch
{
Write-Host "##vso[task.LogIssue type=error;]Failed to connect to the vSphere server"
exit 1
}
# check vm clone status
$chainId = (Get-VIEvent -Entity $VMName).ChainId
if ($chainId)
{
$task = Get-Task -Status Running | Where-Object { ($_.Name -eq 'CloneVM_Task') -and ($_.ExtensionData.Info.EventChainId -in $chainId) }
if ($task)
{
try
{
Stop-Task -Task $task -Confirm:$false -ErrorAction Stop
Write-Host "The vm '$VMName' clone task has been cancelled"
}
catch
{
Write-Host "##vso[task.LogIssue type=error;]Failed to cancel the task"
}
}
}
# remove a vm
$vm = Get-VM -Name $VMName -ErrorAction SilentlyContinue
if ($vm)
{
$vmState = $vm.PowerState
if ($vmState -ne "PoweredOff")
{
try
{
$null = Stop-VM -VM $vm -Confirm:$false -ErrorAction Stop
Write-Host "The vm '$VMName' has been powered off"
}
catch
{
Write-Host "##vso[task.LogIssue type=error;]Failed to shutdown '$VMName'"
}
}
try
{
Remove-VM -VM $vm -DeletePermanently -Confirm:$false -ErrorAction Stop
Write-Host "The vm '$VMName' has been removed"
}
catch
{
Write-Host "##vso[task.LogIssue type=error;]Failed to remove '$VMName'"
}
}
else
{
Write-Host "VM '$VMName' not found"
}

View File

@@ -1,17 +1,17 @@
| Announcements | | Announcements |
|-| |-|
| [Default Python will be switched to 3.8 on Ubuntu 20.04 on October, 6](https://github.com/actions/virtual-environments/issues/1591) | | [Default Python will be switched to 3.8 on Ubuntu 20.04 on October, 6](https://github.com/actions/virtual-environments/issues/1591) |
| [Clang/LLVM 10 will be set as a default one and Clang/LLVM 6 will be deprecated for Ubuntu 20.04 on September, 23](https://github.com/actions/virtual-environments/issues/1536) | | [Clang/LLVM 10 will be set as a default one and Clang/LLVM 6 will be deprecated for Ubuntu 20.04 on September, 23](https://github.com/actions/virtual-environments/issues/1536) |
*** ***
# Ubuntu 16.04.7 LTS # Ubuntu 16.04.7 LTS
- Image Version: 20200920.1 - Image Version: 20201004.1
## Installed Software ## Installed Software
### Language and Runtime ### Language and Runtime
- GNU C++ 5.5.0, 7.5.0, 8.4.0, 9.3.0 - GNU C++ 5.5.0, 7.5.0, 8.4.0, 9.3.0
- GNU Fortran 5.5.0, 8.4.0, 9.3.0 - GNU Fortran 5.5.0, 8.4.0, 9.3.0
- Clang 6.0.0, 8.0.0, 9.0.1 - Clang 6.0.0, 8.0.0, 9.0.1
- Erlang 11.0.3 - Erlang 11.1
- Mono 6.12.0.90 - Mono 6.12.0.90
- Node 12.18.4 - Node 12.18.4
- Python 2.7.12 - Python 2.7.12
@@ -19,10 +19,10 @@
- PowerShell 7.0.3 - PowerShell 7.0.3
- Ruby 2.3.1p112 - Ruby 2.3.1p112
- Swift 5.3 - Swift 5.3
- Julia 1.5.1 - Julia 1.5.2
### Package Management ### Package Management
- Homebrew 2.5.1 - Homebrew 2.5.2
- Gem 3.1.4 - Gem 3.1.4
- Miniconda 4.8.3 - Miniconda 4.8.3
- Helm - Helm
@@ -43,19 +43,20 @@
- Ansible 2.9.13 - Ansible 2.9.13
- AzCopy10 10.6.0 (available by `azcopy10` alias) - AzCopy10 10.6.0 (available by `azcopy10` alias)
- AzCopy7 7.3.0 (available by `azcopy` alias) - AzCopy7 7.3.0 (available by `azcopy` alias)
- Bazel 3.5.0 - Bazel 3.5.1
- Bazelisk 1.6.1 - Bazelisk 1.6.1
- CMake 3.17.0 - CMake 3.17.0
- CodeQL Action Bundle 2.2.5
- curl 7.47.0 - curl 7.47.0
- Docker Compose 1.27.3 - Docker Compose 1.27.4
- Docker-Buildx 0.4.2 - Docker-Buildx 0.4.2
- Docker-Moby 19.03.12 - Docker-Moby 19.03.13
- Git 2.28.0 - Git 2.28.0
- Git LFS 2.12.0 - Git LFS 2.12.0
- Git-ftp 1.0.2 - Git-ftp 1.0.2
- Google Cloud SDK 310.0.0 - Google Cloud SDK 312.0.0
- Haveged 1.9.1 - Haveged 1.9.1
- Heroku 7.43.0 - Heroku 7.44.0
- HHVM (HipHop VM) 4.56.1 - HHVM (HipHop VM) 4.56.1
- jq 1.5 - jq 1.5
- Kind 0.9.0 - Kind 0.9.0
@@ -64,14 +65,17 @@
- Leiningen 2.9.4 - Leiningen 2.9.4
- m4 1.4.17 - m4 1.4.17
- Mercurial 4.4.1 - Mercurial 4.4.1
- Minikube 1.13.0 - Minikube 1.13.1
- Newman 5.2.0 - Newman 5.2.0
- nvm 0.35.3 - nvm 0.35.3
- Packer 1.6.2 - Packer 1.6.4
- PhantomJS 2.1.1 - PhantomJS 2.1.1
- Pulumi 2.11.2
- R 4.0.2
- Sphinx Open Source Search Server 2.2.9
- SVN 1.9.3 - SVN 1.9.3
- Swig 3.0.8 - Swig 3.0.8
- Terraform 0.13.3 - Terraform 0.13.4
- unzip 6.00 - unzip 6.00
- wget 1.17.1 - wget 1.17.1
- zip 3.0 - zip 3.0
@@ -79,17 +83,17 @@
### CLI Tools ### CLI Tools
- Alibaba Cloud CLI 3.0.59 - Alibaba Cloud CLI 3.0.59
- AWS CLI 1.18.142 - AWS CLI 1.18.152
- AWS CLI Session manager plugin 1.1.61.0 - AWS CLI Session manager plugin 1.1.61.0
- AWS SAM CLI 1.2.0 - AWS SAM CLI 1.4.0
- Azure CLI (azure-cli) 2.11.1 - Azure CLI (azure-cli) 2.12.1
- Azure CLI (azure-devops) 0.18.0 - Azure CLI (azure-devops) 0.18.0
- GitHub CLI - GitHub CLI
- Hub CLI 2.14.2 - Hub CLI 2.14.2
- Netlify CLI 2.63.2 - Netlify CLI 2.64.1
- oc CLI 4.5.0 - oc CLI 4.5.0
- ORAS CLI 0.8.1 - ORAS CLI 0.8.1
- Vercel CLI 20.1.0 - Vercel CLI 20.1.1
### Java ### Java
| Version | Vendor | Environment Variable | | Version | Vendor | Environment Variable |
@@ -119,26 +123,26 @@
#### Packages #### Packages
- Bindgen 0.55.1 - Bindgen 0.55.1
- Cargo audit 0.12.0 - Cargo audit 0.12.1
- Cargo outdated 0.9.11 - Cargo outdated 0.9.11
- Cargo clippy 0.0.212 - Cargo clippy 0.0.212
- Cbindgen 0.14.5 - Cbindgen 0.14.6
- Rustfmt 1.4.18 - Rustfmt 1.4.18
### Browsers and Drivers ### Browsers and Drivers
- Google Chrome 85.0.4183.102 - Google Chrome 85.0.4183.121
- ChromeDriver 85.0.4183.87 - ChromeDriver 85.0.4183.87
- Mozilla Firefox 80.0.1 - Mozilla Firefox 81.0
- Geckodriver 0.27.0 - Geckodriver 0.27.0
### .NET Core SDK ### .NET Core SDK
- 2.1.300 2.1.301 2.1.302 2.1.401 2.1.402 2.1.403 2.1.500 2.1.502 2.1.503 2.1.504 2.1.505 2.1.506 2.1.507 2.1.508 2.1.509 2.1.510 2.1.511 2.1.512 2.1.513 2.1.514 2.1.515 2.1.516 2.1.517 2.1.518 2.1.602 2.1.603 2.1.604 2.1.605 2.1.606 2.1.607 2.1.608 2.1.609 2.1.610 2.1.611 2.1.612 2.1.613 2.1.614 2.1.615 2.1.700 2.1.701 2.1.801 2.1.802 2.1.803 2.1.804 2.1.805 2.1.806 2.1.807 2.1.808 2.1.809 2.1.810 3.0.100 3.0.101 3.0.102 3.0.103 3.1.100 3.1.101 3.1.102 3.1.103 3.1.104 3.1.105 3.1.106 3.1.107 3.1.108 3.1.200 3.1.201 3.1.202 3.1.300 3.1.301 3.1.302 3.1.401 3.1.402 - 2.1.300 2.1.301 2.1.302 2.1.401 2.1.402 2.1.403 2.1.500 2.1.502 2.1.503 2.1.504 2.1.505 2.1.506 2.1.507 2.1.508 2.1.509 2.1.510 2.1.511 2.1.512 2.1.513 2.1.514 2.1.515 2.1.516 2.1.517 2.1.518 2.1.602 2.1.603 2.1.604 2.1.605 2.1.606 2.1.607 2.1.608 2.1.609 2.1.610 2.1.611 2.1.612 2.1.613 2.1.614 2.1.615 2.1.700 2.1.701 2.1.801 2.1.802 2.1.803 2.1.804 2.1.805 2.1.806 2.1.807 2.1.808 2.1.809 2.1.810 3.0.100 3.0.101 3.0.102 3.0.103 3.1.100 3.1.101 3.1.102 3.1.103 3.1.104 3.1.105 3.1.106 3.1.107 3.1.108 3.1.200 3.1.201 3.1.202 3.1.300 3.1.301 3.1.302 3.1.401 3.1.402
### Az Module ### Az Module
- 1.0.0 1.6.0 2.3.2 2.6.0 2.8.0 3.1.0 3.5.0 3.8.0 4.3.0 4.4.0 4.6.0 - 1.0.0 1.6.0 2.3.2 2.6.0 2.8.0 3.1.0 3.5.0 3.8.0 4.3.0 4.4.0 4.6.0 4.7.0
### Databases ### Databases
- Postgre SQL 12.4 - Postgre SQL 13.0
- MongoDB 4.4.1 - MongoDB 4.4.1
- sqlite3 3.11.0 - sqlite3 3.11.0
@@ -162,17 +166,17 @@
- 3.5.10 - 3.5.10
- 3.6.12 - 3.6.12
- 3.7.9 - 3.7.9
- 3.8.5 - 3.8.6
#### PyPy #### PyPy
- 2.7.13 [PyPy 7.3.1] - 2.7.13 [PyPy 7.3.2]
- 3.6.9 [PyPy 7.3.1] - 3.6.9 [PyPy 7.3.2]
#### Node.js #### Node.js
- 8.17.0 - 8.17.0
- 10.22.1 - 10.22.1
- 12.18.4 - 12.18.4
- 14.11.0 - 14.13.0
#### Go #### Go
- 1.11.13 - 1.11.13

View File

@@ -1,17 +1,17 @@
| Announcements | | Announcements |
|-| |-|
| [Default Python will be switched to 3.8 on Ubuntu 20.04 on October, 6](https://github.com/actions/virtual-environments/issues/1591) | | [Default Python will be switched to 3.8 on Ubuntu 20.04 on October, 6](https://github.com/actions/virtual-environments/issues/1591) |
| [Clang/LLVM 10 will be set as a default one and Clang/LLVM 6 will be deprecated for Ubuntu 20.04 on September, 23](https://github.com/actions/virtual-environments/issues/1536) | | [Clang/LLVM 10 will be set as a default one and Clang/LLVM 6 will be deprecated for Ubuntu 20.04 on September, 23](https://github.com/actions/virtual-environments/issues/1536) |
*** ***
# Ubuntu 18.04.5 LTS # Ubuntu 18.04.5 LTS
- Image Version: 20200920.1 - Image Version: 20201004.1
## Installed Software ## Installed Software
### Language and Runtime ### Language and Runtime
- GNU C++ 7.5.0, 8.4.0, 9.3.0 - GNU C++ 7.5.0, 8.4.0, 9.3.0, 10.1.0
- GNU Fortran 7.5.0, 8.4.0, 9.3.0 - GNU Fortran 7.5.0, 8.4.0, 9.3.0
- Clang 6.0.0, 8.0.0, 9.0.0 - Clang 6.0.0, 8.0.0, 9.0.0
- Erlang 11.0.3 - Erlang 11.1
- Mono 6.12.0.90 - Mono 6.12.0.90
- Node 12.18.4 - Node 12.18.4
- Python 2.7.17 - Python 2.7.17
@@ -19,10 +19,10 @@
- PowerShell 7.0.3 - PowerShell 7.0.3
- Ruby 2.5.1p57 - Ruby 2.5.1p57
- Swift 5.3 - Swift 5.3
- Julia 1.5.1 - Julia 1.5.2
### Package Management ### Package Management
- Homebrew 2.5.1 - Homebrew 2.5.2
- Gem 3.1.4 - Gem 3.1.4
- Miniconda 4.8.3 - Miniconda 4.8.3
- Helm - Helm
@@ -43,21 +43,22 @@
- Ansible 2.9.13 - Ansible 2.9.13
- AzCopy10 10.6.0 (available by `azcopy10` alias) - AzCopy10 10.6.0 (available by `azcopy10` alias)
- AzCopy7 7.3.0 (available by `azcopy` alias) - AzCopy7 7.3.0 (available by `azcopy` alias)
- Bazel 3.5.0 - Bazel 3.5.1
- Bazelisk 1.6.1 - Bazelisk 1.6.1
- Buildah - Buildah
- CMake 3.17.0 - CMake 3.17.0
- CodeQL Action Bundle 2.2.5
- curl 7.58.0 - curl 7.58.0
- Docker Compose 1.27.3 - Docker Compose 1.27.4
- Docker-Buildx 0.4.2 - Docker-Buildx 0.4.2
- Docker-Moby 19.03.12 - Docker-Moby 19.03.13
- Git 2.28.0 - Git 2.28.0
- Git LFS 2.12.0 - Git LFS 2.12.0
- Git-ftp 1.3.1 - Git-ftp 1.3.1
- Google Cloud SDK 310.0.0 - Google Cloud SDK 312.0.0
- Haveged 1.9.1 - Haveged 1.9.1
- Heroku 7.43.0 - Heroku 7.44.0
- HHVM (HipHop VM) 4.75.0 - HHVM (HipHop VM) 4.77.0
- jq 1.5 - jq 1.5
- Kind 0.9.0 - Kind 0.9.0
- Kubectl 1.19.2 - Kubectl 1.19.2
@@ -65,16 +66,19 @@
- Leiningen 2.9.4 - Leiningen 2.9.4
- m4 1.4.18 - m4 1.4.18
- Mercurial 4.5.3 - Mercurial 4.5.3
- Minikube 1.13.0 - Minikube 1.13.1
- Newman 5.2.0 - Newman 5.2.0
- nvm 0.35.3 - nvm 0.35.3
- Packer 1.6.2 - Packer 1.6.4
- PhantomJS 2.1.1 - PhantomJS 2.1.1
- Podman - Podman
- Skopeo 1.1.1 - Pulumi 2.11.2
- R 4.0.2
- Skopeo 1.2.0
- Sphinx Open Source Search Server 2.2.11
- SVN 1.9.7 - SVN 1.9.7
- Swig 3.0.12 - Swig 3.0.12
- Terraform 0.13.3 - Terraform 0.13.4
- unzip 6.00 - unzip 6.00
- wget 1.19.4 - wget 1.19.4
- zip 3.0 - zip 3.0
@@ -82,17 +86,17 @@
### CLI Tools ### CLI Tools
- Alibaba Cloud CLI 3.0.59 - Alibaba Cloud CLI 3.0.59
- AWS CLI 1.18.142 - AWS CLI 1.18.152
- AWS CLI Session manager plugin 1.1.61.0 - AWS CLI Session manager plugin 1.1.61.0
- AWS SAM CLI 1.2.0 - AWS SAM CLI 1.4.0
- Azure CLI (azure-cli) 2.11.1 - Azure CLI (azure-cli) 2.12.1
- Azure CLI (azure-devops) 0.18.0 - Azure CLI (azure-devops) 0.18.0
- GitHub CLI - GitHub CLI
- Hub CLI 2.14.2 - Hub CLI 2.14.2
- Netlify CLI 2.63.2 - Netlify CLI 2.64.1
- oc CLI 4.5.0 - oc CLI 4.5.0
- ORAS CLI 0.8.1 - ORAS CLI 0.8.1
- Vercel CLI 20.1.0 - Vercel CLI 20.1.1
### Java ### Java
| Version | Vendor | Environment Variable | | Version | Vendor | Environment Variable |
@@ -122,26 +126,26 @@
#### Packages #### Packages
- Bindgen 0.55.1 - Bindgen 0.55.1
- Cargo audit 0.12.0 - Cargo audit 0.12.1
- Cargo outdated 0.9.11 - Cargo outdated 0.9.11
- Cargo clippy 0.0.212 - Cargo clippy 0.0.212
- Cbindgen 0.14.5 - Cbindgen 0.14.6
- Rustfmt 1.4.18 - Rustfmt 1.4.18
### Browsers and Drivers ### Browsers and Drivers
- Google Chrome 85.0.4183.102 - Google Chrome 85.0.4183.121
- ChromeDriver 85.0.4183.87 - ChromeDriver 85.0.4183.87
- Mozilla Firefox 80.0.1 - Mozilla Firefox 81.0
- Geckodriver 0.27.0 - Geckodriver 0.27.0
### .NET Core SDK ### .NET Core SDK
- 2.1.300 2.1.301 2.1.302 2.1.401 2.1.402 2.1.403 2.1.500 2.1.502 2.1.503 2.1.504 2.1.505 2.1.506 2.1.507 2.1.508 2.1.509 2.1.510 2.1.511 2.1.512 2.1.513 2.1.514 2.1.515 2.1.516 2.1.517 2.1.518 2.1.602 2.1.603 2.1.604 2.1.605 2.1.606 2.1.607 2.1.608 2.1.609 2.1.610 2.1.611 2.1.612 2.1.613 2.1.614 2.1.615 2.1.700 2.1.701 2.1.801 2.1.802 2.1.803 2.1.804 2.1.805 2.1.806 2.1.807 2.1.808 2.1.809 2.1.810 3.0.100 3.0.101 3.0.102 3.0.103 3.1.100 3.1.101 3.1.102 3.1.103 3.1.104 3.1.105 3.1.106 3.1.107 3.1.108 3.1.200 3.1.201 3.1.202 3.1.300 3.1.301 3.1.302 3.1.401 3.1.402 - 2.1.300 2.1.301 2.1.302 2.1.401 2.1.402 2.1.403 2.1.500 2.1.502 2.1.503 2.1.504 2.1.505 2.1.506 2.1.507 2.1.508 2.1.509 2.1.510 2.1.511 2.1.512 2.1.513 2.1.514 2.1.515 2.1.516 2.1.517 2.1.518 2.1.602 2.1.603 2.1.604 2.1.605 2.1.606 2.1.607 2.1.608 2.1.609 2.1.610 2.1.611 2.1.612 2.1.613 2.1.614 2.1.615 2.1.700 2.1.701 2.1.801 2.1.802 2.1.803 2.1.804 2.1.805 2.1.806 2.1.807 2.1.808 2.1.809 2.1.810 3.0.100 3.0.101 3.0.102 3.0.103 3.1.100 3.1.101 3.1.102 3.1.103 3.1.104 3.1.105 3.1.106 3.1.107 3.1.108 3.1.200 3.1.201 3.1.202 3.1.300 3.1.301 3.1.302 3.1.401 3.1.402
### Az Module ### Az Module
- 1.0.0 1.6.0 2.3.2 2.6.0 2.8.0 3.1.0 3.5.0 3.8.0 4.3.0 4.4.0 4.6.0 - 1.0.0 1.6.0 2.3.2 2.6.0 2.8.0 3.1.0 3.5.0 3.8.0 4.3.0 4.4.0 4.6.0 4.7.0
### Databases ### Databases
- Postgre SQL 12.4 - Postgre SQL 13.0
- MongoDB 4.4.1 - MongoDB 4.4.1
- sqlite3 3.22.0 - sqlite3 3.22.0
@@ -165,17 +169,17 @@
- 3.5.10 - 3.5.10
- 3.6.12 - 3.6.12
- 3.7.9 - 3.7.9
- 3.8.5 - 3.8.6
#### PyPy #### PyPy
- 2.7.13 [PyPy 7.3.1] - 2.7.13 [PyPy 7.3.2]
- 3.6.9 [PyPy 7.3.1] - 3.6.9 [PyPy 7.3.2]
#### Node.js #### Node.js
- 8.17.0 - 8.17.0
- 10.22.1 - 10.22.1
- 12.18.4 - 12.18.4
- 14.11.0 - 14.13.0
#### Go #### Go
- 1.11.13 - 1.11.13

View File

@@ -1,34 +1,34 @@
| Announcements | | Announcements |
|-| |-|
| [Default Python will be switched to 3.8 on Ubuntu 20.04 on October, 6](https://github.com/actions/virtual-environments/issues/1591) | | [Default Python will be switched to 3.8 on Ubuntu 20.04 on October, 6](https://github.com/actions/virtual-environments/issues/1591) |
| [Clang/LLVM 10 will be set as a default one and Clang/LLVM 6 will be deprecated for Ubuntu 20.04 on September, 23](https://github.com/actions/virtual-environments/issues/1536) | | [Clang/LLVM 10 will be set as a default one and Clang/LLVM 6 will be deprecated for Ubuntu 20.04 on September, 23](https://github.com/actions/virtual-environments/issues/1536) |
*** ***
# Ubuntu 20.04.1 LTS # Ubuntu 20.04.1 LTS
- Image Version: 20200920.1 - Image Version: 20201004.1
## Installed Software ## Installed Software
### Language and Runtime ### Language and Runtime
- GNU C++ 7.5.0, 8.4.0, 9.3.0 - GNU C++ 7.5.0, 8.4.0, 9.3.0, 10.0.1
- GNU Fortran 8.4.0, 9.3.0 - GNU Fortran 8.4.0, 9.3.0
- Clang 10.0.1, 8.0.1, 9.0.1 - Clang 8.0.1, 9.0.1, 10.0.0
- Erlang 11.0.3 - Erlang 11.1
- Mono 6.12.0.90 - Mono 6.12.0.90
- Node 12.18.4 - Node 12.18.4
- Python 2.7.18rc1 - Python 3.8.2
- Python3 3.8.2 - Python3 3.8.2
- PowerShell 7.0.3 - PowerShell 7.0.3
- Ruby 2.7.0p0 - Ruby 2.7.0p0
- Swift 5.3 - Swift 5.3
- Julia 1.5.1 - Julia 1.5.2
### Package Management ### Package Management
- Homebrew 2.5.1 - Homebrew 2.5.2
- Gem 3.1.2 - Gem 3.1.2
- Miniconda 4.8.3 - Miniconda 4.8.3
- Helm 3.3.3 - Helm 3.3.4
- Npm 6.14.8 - Npm 6.14.8
- Yarn 1.22.5 - Yarn 1.22.5
- Pip 20.2.3 - Pip 20.0.2
- Pip3 20.0.2 - Pip3 20.0.2
- Vcpkg 2020.06.15 - Vcpkg 2020.06.15
@@ -43,21 +43,22 @@
- Ansible 2.9.6 - Ansible 2.9.6
- AzCopy10 10.6.0 (available by `azcopy10` alias) - AzCopy10 10.6.0 (available by `azcopy10` alias)
- AzCopy7 7.3.0 (available by `azcopy` alias) - AzCopy7 7.3.0 (available by `azcopy` alias)
- Bazel 3.5.0 - Bazel 3.5.1
- Bazelisk 1.6.1 - Bazelisk 1.6.1
- Buildah 1.16.1 - Buildah 1.16.4
- CMake 3.17.0 - CMake 3.17.0
- CodeQL Action Bundle 2.2.5
- curl 7.68.0 - curl 7.68.0
- Docker Compose 1.27.3 - Docker Compose 1.27.4
- Docker-Buildx 0.4.2 - Docker-Buildx 0.4.2
- Docker-Moby 19.03.12 - Docker-Moby 19.03.13
- Git 2.28.0 - Git 2.28.0
- Git LFS 2.12.0 - Git LFS 2.12.0
- Git-ftp 1.6.0 - Git-ftp 1.6.0
- Google Cloud SDK 310.0.0 - Google Cloud SDK 312.0.0
- Haveged 1.9.1 - Haveged 1.9.1
- Heroku 7.43.0 - Heroku 7.44.0
- HHVM (HipHop VM) 4.75.0 - HHVM (HipHop VM) 4.77.0
- jq 1.6 - jq 1.6
- Kind 0.9.0 - Kind 0.9.0
- Kubectl 1.19.2 - Kubectl 1.19.2
@@ -65,16 +66,19 @@
- Leiningen 2.9.4 - Leiningen 2.9.4
- m4 1.4.18 - m4 1.4.18
- Mercurial 5.3.1 - Mercurial 5.3.1
- Minikube 1.13.0 - Minikube 1.13.1
- Newman 5.2.0 - Newman 5.2.0
- nvm 0.35.3 - nvm 0.35.3
- Packer 1.6.2 - Packer 1.6.4
- PhantomJS 2.1.1 - PhantomJS 2.1.1
- Podman 2.0.6 - Podman 2.1.1
- Skopeo 1.1.1 - Pulumi 2.11.2
- R 4.0.2
- Skopeo 1.2.0
- Sphinx Open Source Search Server 2.2.11
- SVN 1.13.0 - SVN 1.13.0
- Swig 4.0.1 - Swig 4.0.1
- Terraform 0.13.3 - Terraform 0.13.4
- unzip 6.00 - unzip 6.00
- wget 1.20.3 - wget 1.20.3
- zip 3.0 - zip 3.0
@@ -82,17 +86,17 @@
### CLI Tools ### CLI Tools
- Alibaba Cloud CLI 3.0.59 - Alibaba Cloud CLI 3.0.59
- AWS CLI 2.0.50 - AWS CLI 2.0.54
- AWS CLI Session manager plugin 1.1.61.0 - AWS CLI Session manager plugin 1.1.61.0
- AWS SAM CLI 1.2.0 - AWS SAM CLI 1.4.0
- Azure CLI (azure-cli) 2.11.1 - Azure CLI (azure-cli) 2.12.1
- Azure CLI (azure-devops) 0.18.0 - Azure CLI (azure-devops) 0.18.0
- GitHub CLI 1.0.0 - GitHub CLI 1.0.0
- Hub CLI 2.14.2 - Hub CLI 2.14.2
- Netlify CLI 2.63.2 - Netlify CLI 2.64.1
- oc CLI 4.5.0 - oc CLI 4.5.0
- ORAS CLI 0.8.1 - ORAS CLI 0.8.1
- Vercel CLI 20.1.0 - Vercel CLI 20.1.1
### Java ### Java
| Version | Vendor | Environment Variable | | Version | Vendor | Environment Variable |
@@ -120,26 +124,26 @@
#### Packages #### Packages
- Bindgen 0.55.1 - Bindgen 0.55.1
- Cargo audit 0.12.0 - Cargo audit 0.12.1
- Cargo outdated 0.9.11 - Cargo outdated 0.9.11
- Cargo clippy 0.0.212 - Cargo clippy 0.0.212
- Cbindgen 0.14.5 - Cbindgen 0.14.6
- Rustfmt 1.4.18 - Rustfmt 1.4.18
### Browsers and Drivers ### Browsers and Drivers
- Google Chrome 85.0.4183.102 - Google Chrome 85.0.4183.121
- ChromeDriver 85.0.4183.87 - ChromeDriver 85.0.4183.87
- Mozilla Firefox 80.0.1 - Mozilla Firefox 81.0
- Geckodriver 0.27.0 - Geckodriver 0.27.0
### .NET Core SDK ### .NET Core SDK
- 2.1.300 2.1.301 2.1.302 2.1.401 2.1.402 2.1.403 2.1.500 2.1.502 2.1.503 2.1.504 2.1.505 2.1.506 2.1.507 2.1.508 2.1.509 2.1.510 2.1.511 2.1.512 2.1.513 2.1.514 2.1.515 2.1.516 2.1.517 2.1.518 2.1.602 2.1.603 2.1.604 2.1.605 2.1.606 2.1.607 2.1.608 2.1.609 2.1.610 2.1.611 2.1.612 2.1.613 2.1.614 2.1.615 2.1.700 2.1.701 2.1.801 2.1.802 2.1.803 2.1.804 2.1.805 2.1.806 2.1.807 2.1.808 2.1.809 2.1.810 3.1.100 3.1.101 3.1.102 3.1.103 3.1.104 3.1.105 3.1.106 3.1.107 3.1.108 3.1.200 3.1.201 3.1.202 3.1.300 3.1.301 3.1.302 3.1.401 3.1.402 - 2.1.300 2.1.301 2.1.302 2.1.401 2.1.402 2.1.403 2.1.500 2.1.502 2.1.503 2.1.504 2.1.505 2.1.506 2.1.507 2.1.508 2.1.509 2.1.510 2.1.511 2.1.512 2.1.513 2.1.514 2.1.515 2.1.516 2.1.517 2.1.518 2.1.602 2.1.603 2.1.604 2.1.605 2.1.606 2.1.607 2.1.608 2.1.609 2.1.610 2.1.611 2.1.612 2.1.613 2.1.614 2.1.615 2.1.700 2.1.701 2.1.801 2.1.802 2.1.803 2.1.804 2.1.805 2.1.806 2.1.807 2.1.808 2.1.809 2.1.810 3.1.100 3.1.101 3.1.102 3.1.103 3.1.104 3.1.105 3.1.106 3.1.107 3.1.108 3.1.200 3.1.201 3.1.202 3.1.300 3.1.301 3.1.302 3.1.401 3.1.402
### Az Module ### Az Module
- 4.6.1 - 4.7.0
### Databases ### Databases
- Postgre SQL 12.4 - Postgre SQL 13.0
- MongoDB 4.4.1 - MongoDB 4.4.1
- sqlite3 3.31.1 - sqlite3 3.31.1
@@ -162,17 +166,17 @@
- 3.5.10 - 3.5.10
- 3.6.12 - 3.6.12
- 3.7.9 - 3.7.9
- 3.8.5 - 3.8.6
#### PyPy #### PyPy
- 2.7.13 [PyPy 7.3.1] - 2.7.13 [PyPy 7.3.2]
- 3.6.9 [PyPy 7.3.1] - 3.6.9 [PyPy 7.3.2]
#### Node.js #### Node.js
- 8.17.0 - 8.17.0
- 10.22.1 - 10.22.1
- 12.18.4 - 12.18.4
- 14.11.0 - 14.13.0
#### Go #### Go
- 1.14.9 - 1.14.9
@@ -210,6 +214,6 @@
- ubuntu:14.04 - ubuntu:14.04
### Installed apt packages ### Installed apt packages
- bison, brotli, bzip2, curl, dbus, dnsutils, dpkg, fakeroot, file, flex, ftp, gnupg2, iproute2, iputils-ping, jq, lib32z1, libc++-dev, libc++abi-dev, libcurl4, libgbm-dev, libgconf-2-4, libgtk-3-0, libsecret-1-dev, libsqlite3-dev, libunwind8, libxkbfile-dev, libxss1, locales, m4, netcat, openssh-client, parallel, patchelf, pkg-config, python-is-python2, rpm, rsync, shellcheck, sqlite3, ssh, sudo, telnet, texinfo, time, tk, tzdata, unzip, upx, wget, xorriso, xvfb, xz-utils, yamllint, zip, zstd, zsync - bison, brotli, bzip2, curl, dbus, dnsutils, dpkg, fakeroot, file, flex, ftp, gnupg2, iproute2, iputils-ping, jq, lib32z1, libc++-dev, libc++abi-dev, libcurl4, libgbm-dev, libgconf-2-4, libgtk-3-0, libsecret-1-dev, libsqlite3-dev, libunwind8, libxkbfile-dev, libxss1, locales, m4, netcat, openssh-client, parallel, patchelf, pkg-config, python-is-python3, rpm, rsync, shellcheck, sqlite3, ssh, sudo, telnet, texinfo, time, tk, tzdata, unzip, upx, wget, xorriso, xvfb, xz-utils, yamllint, zip, zstd, zsync

View File

@@ -5,14 +5,16 @@ function Get-OSName {
} }
function Get-CPPVersions { function Get-CPPVersions {
$cppVersions = apt list --installed 2>&1 | Where-Object { $_ -match "g\+\+-\d+"} | ForEach-Object { $result = Get-CommandResult "apt list --installed" -Multiline
$cppVersions = $result.Output | Where-Object { $_ -match "g\+\+-\d+"} | ForEach-Object {
& $_.Split("/")[0] --version | Select-Object -First 1 | Take-OutputPart -Part 3 & $_.Split("/")[0] --version | Select-Object -First 1 | Take-OutputPart -Part 3
} | Sort-Object {[Version]$_} } | Sort-Object {[Version]$_}
return "GNU C++ " + ($cppVersions -Join ", ") return "GNU C++ " + ($cppVersions -Join ", ")
} }
function Get-FortranVersions { function Get-FortranVersions {
$fortranVersions = apt list --installed 2>&1 | Where-Object { $_ -match "^gfortran-\d+"} | ForEach-Object { $result = Get-CommandResult "apt list --installed" -Multiline
$fortranVersions = $result.Output | Where-Object { $_ -match "^gfortran-\d+"} | ForEach-Object {
$_ -match "now (?<version>\d+\.\d+\.\d+)-" | Out-Null $_ -match "now (?<version>\d+\.\d+\.\d+)-" | Out-Null
$Matches.version $Matches.version
} | Sort-Object {[Version]$_} } | Sort-Object {[Version]$_}
@@ -21,7 +23,8 @@ function Get-FortranVersions {
function Get-ClangVersions { function Get-ClangVersions {
$clangVersions = @() $clangVersions = @()
$clangVersions = apt list --installed 2>&1 | Where-Object { $_ -match "^clang-\d+"} | ForEach-Object { $result = Get-CommandResult "apt list --installed" -Multiline
$clangVersions = $result.Output | Where-Object { $_ -match "^clang-\d+"} | ForEach-Object {
$clangCommand = ($_ -Split "/")[0] $clangCommand = ($_ -Split "/")[0]
Invoke-Expression "$clangCommand --version" | Where-Object { $_ -match "clang version" } | ForEach-Object { Invoke-Expression "$clangCommand --version" | Where-Object { $_ -match "clang version" } | ForEach-Object {
$_ -match "clang version (?<version>\d+\.\d+\.\d+)-" | Out-Null $_ -match "clang version (?<version>\d+\.\d+\.\d+)-" | Out-Null
@@ -153,14 +156,15 @@ function Get-MavenVersion {
return "Maven $mavenVersion" return "Maven $mavenVersion"
} }
function Get-SbtVersion { function Get-SbtVersion {
$result = sbt -version 2>&1 | Out-String $result = Get-CommandResult "sbt -version"
$result -match "sbt script version: (?<version>\d+\.\d+\.\d+)" | Out-Null $result.Output -match "sbt script version: (?<version>\d+\.\d+\.\d+)" | Out-Null
$sbtVersion = $Matches.version $sbtVersion = $Matches.version
return "Sbt $sbtVersion" return "Sbt $sbtVersion"
} }
function Get-PHPVersions { function Get-PHPVersions {
return $(apt list --installed 2>&1) | Where-Object { $_ -match "^php\d+\.\d+/"} | ForEach-Object { $result = Get-CommandResult "apt list --installed" -Multiline
return $result.Output | Where-Object { $_ -match "^php\d+\.\d+/"} | ForEach-Object {
$_ -match "now (?<version>\d+\.\d+\.\d+)-" | Out-Null $_ -match "now (?<version>\d+\.\d+\.\d+)-" | Out-Null
$Matches.version $Matches.version
} }

View File

@@ -3,6 +3,8 @@ param (
$OutputDirectory $OutputDirectory
) )
$ErrorActionPreference = "Stop"
Import-Module MarkdownPS Import-Module MarkdownPS
Import-Module (Join-Path $PSScriptRoot "SoftwareReport.Android.psm1") -DisableNameChecking Import-Module (Join-Path $PSScriptRoot "SoftwareReport.Android.psm1") -DisableNameChecking
Import-Module (Join-Path $PSScriptRoot "SoftwareReport.Browsers.psm1") -DisableNameChecking Import-Module (Join-Path $PSScriptRoot "SoftwareReport.Browsers.psm1") -DisableNameChecking

View File

@@ -24,7 +24,8 @@ function Get-BazelVersion {
} }
function Get-BazeliskVersion { function Get-BazeliskVersion {
$bazeliskVersion = bazelisk version 2>&1 | Select-String "Bazelisk version:" | Take-OutputPart -Part 2 | Take-OutputPart -Part 0 -Delimiter "v" $result = Get-CommandResult "bazelisk version" -Multiline
$bazeliskVersion = $result.Output | Select-String "Bazelisk version:" | Take-OutputPart -Part 2 | Take-OutputPart -Part 0 -Delimiter "v"
return "Bazelisk $bazeliskVersion" return "Bazelisk $bazeliskVersion"
} }
@@ -77,12 +78,14 @@ function Get-DockerBuildxVersion {
} }
function Get-GitVersion { function Get-GitVersion {
$gitVersion = git --version 2>&1 | Take-OutputPart -Part 2 $result = Get-CommandResult "git --version"
$gitVersion = $result.Output | Take-OutputPart -Part 2
return "Git $gitVersion" return "Git $gitVersion"
} }
function Get-GitLFSVersion { function Get-GitLFSVersion {
$gitlfsversion = git-lfs --version 2>&1 | Take-OutputPart -Part 0 | Take-OutputPart -Part 1 -Delimiter "/" $result = Get-CommandResult "git-lfs --version"
$gitlfsversion = $result.Output | Take-OutputPart -Part 0 | Take-OutputPart -Part 1 -Delimiter "/"
return "Git LFS $gitlfsversion" return "Git LFS $gitlfsversion"
} }
@@ -215,12 +218,14 @@ function Get-AlibabaCloudCliVersion {
} }
function Get-AWSCliVersion { function Get-AWSCliVersion {
$awsVersion = aws --version 2>&1 | Take-OutputPart -Part 0 | Take-OutputPart -Part 1 -Delimiter "/" $result = Get-CommandResult "aws --version"
$awsVersion = $result.Output | Take-OutputPart -Part 0 | Take-OutputPart -Part 1 -Delimiter "/"
return "AWS CLI $awsVersion" return "AWS CLI $awsVersion"
} }
function Get-AWSCliSessionManagerPluginVersion { function Get-AWSCliSessionManagerPluginVersion {
return "AWS CLI Session manager plugin $(session-manager-plugin --version 2>&1)" $result = (Get-CommandResult "session-manager-plugin --version").Output
return "AWS CLI Session manager plugin $result"
} }
function Get-AWSSAMVersion { function Get-AWSSAMVersion {
@@ -253,7 +258,8 @@ function Get-ORASCliVersion {
} }
function Get-VerselCliversion { function Get-VerselCliversion {
return "$(vercel --version 2>&1 | Select-Object -First 1)" $result = Get-CommandResult "vercel --version" -Multiline
return $result.Output | Select-Object -First 1
} }
function Get-PulumiVersion { function Get-PulumiVersion {

View File

@@ -42,4 +42,9 @@ download_with_retries() {
## fi ## fi
function IsPackageInstalled { function IsPackageInstalled {
dpkg -S $1 &> /dev/null dpkg -S $1 &> /dev/null
}
verlte() {
sortedVersion=$(echo -e "$1\n$2" | sort -V | head -n1)
[ "$1" = "$sortedVersion" ]
} }

View File

@@ -8,6 +8,23 @@ set -e
# Source the helpers for use with the script # Source the helpers for use with the script
source $HELPER_SCRIPTS/os.sh source $HELPER_SCRIPTS/os.sh
source $HELPER_SCRIPTS/install.sh
function filter_components_by_version {
minimumVersion=$1
shift
toolsArr=("$@")
for item in ${toolsArr[@]}
do
# take the last argument after spliting string by ';'' and '-''
version=$(echo "${item##*[-;]}")
if verlte $minimumVersion $version
then
components+=($item)
fi
done
}
# Set env variable for SDK Root (https://developer.android.com/studio/command-line/variables) # Set env variable for SDK Root (https://developer.android.com/studio/command-line/variables)
ANDROID_ROOT=/usr/local/lib/android ANDROID_ROOT=/usr/local/lib/android
@@ -42,22 +59,23 @@ else
fi fi
toolset="$INSTALLER_SCRIPT_FOLDER/toolset.json" toolset="$INSTALLER_SCRIPT_FOLDER/toolset.json"
platforms=$(jq -r '.android.platform_list[]|"platforms;" + .' $toolset) minimumBuildToolVersion=$(jq -r '.android.build_tools_min_version' $toolset)
buildtools=$(jq -r '.android.build_tools[]|"build-tools;" + .' $toolset) minimumPlatformVersion=$(jq -r '.android.platform_min_version' $toolset)
extras=$(jq -r '.android.extra_list[]|"extras;" + .' $toolset) extras=$(jq -r '.android.extra_list[]|"extras;" + .' $toolset)
addons=$(jq -r '.android.addon_list[]|"add-ons;" + .' $toolset) addons=$(jq -r '.android.addon_list[]|"add-ons;" + .' $toolset)
additional=$(jq -r '.android.additional_tools[]' $toolset) additional=$(jq -r '.android.additional_tools[]' $toolset)
# Install the following SDKs and build tools, passing in "y" to accept licenses. # Install the following SDKs and build tools, passing in "y" to accept licenses.
echo "y" | ${ANDROID_SDK_ROOT}/tools/bin/sdkmanager $platforms $buildtools $extras $google_api_list $addons $additional components=( "${extras[@]}" "${addons[@]}" "${additional[@]}" )
# Document what was added to the image availablePlatforms=($(${ANDROID_SDK_ROOT}/tools/bin/sdkmanager --list | sed -n '/Available Packages:/,/^$/p' | grep "platforms;android-" | cut -d"|" -f 1))
allBuildTools=($(${ANDROID_SDK_ROOT}/tools/bin/sdkmanager --list --include_obsolete | grep "build-tools;" | cut -d"|" -f 1 | sort -u))
availableBuildTools=$(echo ${allBuildTools[@]//*rc[0-9]/})
google_api_versions_list=$(echo "$addons"|awk -F- '/addon-google_apis-google/ {print $5}') filter_components_by_version $minimumPlatformVersion "${availablePlatforms[@]}"
constraint_layout_versions_list=$(echo "$extras"|awk -F';' '/constraint-layout;/ {print $8}') filter_components_by_version $minimumBuildToolVersion "${availableBuildTools[@]}"
constraint_layout_solver_versions_list=$(echo "$extras"|awk -F';' '/constraint-layout-solver;/ {print $8}')
platform_versions_list=$(echo "$platforms"|awk -F- '{print $2}') echo "y" | ${ANDROID_SDK_ROOT}/tools/bin/sdkmanager ${components[@]}
buildtools_versions_list=$(echo "$buildtools"|awk -F';' '{print $2}')
# Add required permissions # Add required permissions
chmod -R a+rwx ${ANDROID_SDK_ROOT} chmod -R a+rwx ${ANDROID_SDK_ROOT}

View File

@@ -7,12 +7,6 @@ set -e
# Source the helpers for use with the script # Source the helpers for use with the script
source $HELPER_SCRIPTS/install.sh source $HELPER_SCRIPTS/install.sh
source $HELPER_SCRIPTS/os.sh
# There is no stable docker-moby for Ubuntu 20 at the moment
if isUbuntu20 ; then
add-apt-repository "deb [arch=amd64,armhf,arm64] https://packages.microsoft.com/ubuntu/20.04/prod testing main"
fi
# Check to see if docker is already installed # Check to see if docker is already installed
docker_package=moby docker_package=moby

View File

@@ -11,7 +11,8 @@
"3.5.*", "3.5.*",
"3.6.*", "3.6.*",
"3.7.*", "3.7.*",
"3.8.*" "3.8.*",
"3.9.*"
] ]
}, },
{ {
@@ -62,12 +63,8 @@
} }
], ],
"android": { "android": {
"platform_list": [ "platform_min_version": "10",
"android-30", "android-29", "android-28", "android-27", "android-26", "android-25", "android-24", "android-23", "android-22", "android-21", "android-19","android-17","android-15","android-10" "build_tools_min_version": "17.0.0",
],
"build_tools": [
"30.0.2", "30.0.1", "30.0.0", "29.0.3", "29.0.2", "29.0.0", "28.0.3", "28.0.2", "28.0.1", "28.0.0", "27.0.3", "27.0.2", "27.0.1", "27.0.0", "26.0.3", "26.0.2", "26.0.1", "26.0.0", "25.0.3", "25.0.2", "25.0.1", "25.0.0", "24.0.3", "24.0.2", "24.0.1", "24.0.0", "23.0.3", "23.0.2", "23.0.1", "22.0.1", "21.1.2", "20.0.0", "19.1.0", "17.0.0"
],
"extra_list": [ "extra_list": [
"android;m2repository", "android;m2repository",
"google;m2repository", "google;m2repository",

View File

@@ -11,7 +11,8 @@
"3.5.*", "3.5.*",
"3.6.*", "3.6.*",
"3.7.*", "3.7.*",
"3.8.*" "3.8.*",
"3.9.*"
] ]
}, },
{ {
@@ -62,12 +63,8 @@
} }
], ],
"android": { "android": {
"platform_list": [ "platform_min_version": "17",
"android-30", "android-29", "android-28", "android-27", "android-26", "android-25", "android-24", "android-23", "android-22", "android-21", "android-19","android-17" "build_tools_min_version": "17.0.0",
],
"build_tools": [
"30.0.2", "30.0.1", "30.0.0", "29.0.3", "29.0.2", "29.0.0", "28.0.3", "28.0.2", "28.0.1", "28.0.0", "27.0.3", "27.0.2", "27.0.1", "27.0.0", "26.0.3", "26.0.2", "26.0.1", "26.0.0", "25.0.3", "25.0.2", "25.0.1", "25.0.0", "24.0.3", "24.0.2", "24.0.1", "24.0.0", "23.0.3", "23.0.2", "23.0.1", "22.0.1", "21.1.2", "20.0.0", "19.1.0", "17.0.0"
],
"extra_list": [ "extra_list": [
"android;m2repository", "android;m2repository",
"google;m2repository", "google;m2repository",

View File

@@ -11,7 +11,8 @@
"3.5.*", "3.5.*",
"3.6.*", "3.6.*",
"3.7.*", "3.7.*",
"3.8.*" "3.8.*",
"3.9.*"
] ]
}, },
{ {
@@ -48,12 +49,8 @@
} }
], ],
"android": { "android": {
"platform_list": [ "platform_min_version": "27",
"android-30", "android-29", "android-28", "android-27" "build_tools_min_version": "27.0.0",
],
"build_tools": [
"30.0.2", "30.0.1", "30.0.0", "29.0.3", "29.0.2", "29.0.0", "28.0.3", "28.0.2", "28.0.1", "28.0.0", "27.0.3", "27.0.2", "27.0.1", "27.0.0"
],
"extra_list": [ "extra_list": [
"android;m2repository", "android;m2repository",
"google;m2repository", "google;m2repository",

View File

@@ -46,11 +46,17 @@ function Switch-Xcode {
} }
function Test-XcodeStableRelease { function Test-XcodeStableRelease {
param( param (
[Parameter(Mandatory)] [Parameter(ParameterSetName = 'Version')]
[string] $Version,
[Parameter(ParameterSetName = 'Path')]
[string] $XcodeRootPath [string] $XcodeRootPath
) )
if ($PSCmdlet.ParameterSetName -eq "Version") {
$XcodeRootPath = Get-XcodeRootPath $Version
}
$licenseInfoPlistPath = Join-Path $XcodeRootPath "Contents" "Resources" "LicenseInfo.plist" $licenseInfoPlistPath = Join-Path $XcodeRootPath "Contents" "Resources" "LicenseInfo.plist"
$releaseType = & defaults read $licenseInfoPlistPath "licenseType" $releaseType = & defaults read $licenseInfoPlistPath "licenseType"
return -not ($releaseType -match "beta") return -not ($releaseType -match "beta")
@@ -102,17 +108,4 @@ function Get-XcodePairsList {
$result += "$watchName $phoneName" $result += "$watchName $phoneName"
} }
return $result return $result
}
function Test-XcodeStableVersion {
param([Parameter(Mandatory)][string]$Version)
if ($Version -match "beta") {
return $false
}
if ($Version -match "GM") {
return $false
}
return $true
} }

View File

@@ -1,4 +1,7 @@
#!/bin/sh #!/bin/sh
source ~/utils/utils.sh
echo "Installing OpenSSL..." echo "Installing OpenSSL..."
export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH" export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH"

View File

@@ -35,13 +35,7 @@ do
echo "Extracting Xcode.app ($VERSION_TO_INSTALL) to ${WORK_DIR} ..." echo "Extracting Xcode.app ($VERSION_TO_INSTALL) to ${WORK_DIR} ..."
extractXcodeXip $WORK_DIR "$VERSION_TO_INSTALL" extractXcodeXip $WORK_DIR "$VERSION_TO_INSTALL"
# Remove "beta" postfix from version XCODE_VERSION=$(echo $XCODE_VERSION | cut -d"_" -f 1)
if [[ $XCODE_VERSION == "12_beta" ]] && is_Catalina ; then
# trick to install Xcode 12 GM and Xcode 12 beta 6 side by side
XCODE_VERSION="12_beta"
else
XCODE_VERSION=$(echo $XCODE_VERSION | cut -d"_" -f 1)
fi
echo "Checking if unpacked Xcode ${XCODE_VERSION} is valid" echo "Checking if unpacked Xcode ${XCODE_VERSION} is valid"
validateXcodeIntegrity "$WORK_DIR" validateXcodeIntegrity "$WORK_DIR"
@@ -55,9 +49,7 @@ do
# Creating a symlink for all Xcode 10* and Xcode 9.3, 9.4 to stay backwards compatible with consumers of the Xcode beta version # Creating a symlink for all Xcode 10* and Xcode 9.3, 9.4 to stay backwards compatible with consumers of the Xcode beta version
createBetaSymlink $XCODE_VERSION createBetaSymlink $XCODE_VERSION
if [ ! $(echo $XCODE_VERSION | grep "beta") ]; then createXamarinProvisionatorSymlink "$XCODE_VERSION"
createXamarinProvisionatorSymlink "$XCODE_VERSION"
fi
find $WORK_DIR -mindepth 1 -delete find $WORK_DIR -mindepth 1 -delete
done done
@@ -74,12 +66,7 @@ do
continue continue
fi fi
if [[ $XCODE_VERSION == "12_beta" ]] && is_Catalina ; then XCODE_VERSION=$(echo $XCODE_VERSION | cut -d"_" -f 1)
# trick to install Xcode 12 GM and Xcode 12 beta 6 side by side
XCODE_VERSION="12_beta"
else
XCODE_VERSION=$(echo $XCODE_VERSION | cut -d"_" -f 1)
fi
echo "Running 'runFirstLaunch' for Xcode ${XCODE_VERSION}..." echo "Running 'runFirstLaunch' for Xcode ${XCODE_VERSION}..."
runFirstLaunch $XCODE_VERSION runFirstLaunch $XCODE_VERSION

View File

@@ -4,6 +4,8 @@ param (
$ImageName $ImageName
) )
$ErrorActionPreference = "Stop"
Import-Module MarkdownPS Import-Module MarkdownPS
Import-Module "$PSScriptRoot/SoftwareReport.Common.psm1" -DisableNameChecking Import-Module "$PSScriptRoot/SoftwareReport.Common.psm1" -DisableNameChecking
Import-Module "$PSScriptRoot/SoftwareReport.Xcode.psm1" -DisableNameChecking Import-Module "$PSScriptRoot/SoftwareReport.Xcode.psm1" -DisableNameChecking

View File

@@ -40,7 +40,7 @@ Describe "Xcode" {
It "Xcode <XcodeVersion> has correct beta symlink" -TestCases $testCases { It "Xcode <XcodeVersion> has correct beta symlink" -TestCases $testCases {
param ( [string] $XcodeVersion ) param ( [string] $XcodeVersion )
$xcodesWithBetaSymlink = @("12", "12_beta", "9.3", "9.4") $xcodesWithBetaSymlink = @("12", "9.3", "9.4")
$shouldBetaSymlinkExists = $XcodeVersion.StartsWith("10") -or $XcodeVersion.StartsWith("11") -or ($XcodeVersion -in $xcodesWithBetaSymlink) $shouldBetaSymlinkExists = $XcodeVersion.StartsWith("10") -or $XcodeVersion.StartsWith("11") -or ($XcodeVersion -in $xcodesWithBetaSymlink)
$betaSymlinkPath = Get-XcodeRootPath -Version "${XcodeVersion}_beta" $betaSymlinkPath = Get-XcodeRootPath -Version "${XcodeVersion}_beta"
@@ -56,7 +56,7 @@ Describe "Xcode" {
} }
Context "XCODE_DEVELOPER_DIR" { Context "XCODE_DEVELOPER_DIR" {
$stableXcodeVersions = $XCODE_VERSIONS | Where-Object { Test-XcodeStableVersion $_ } $stableXcodeVersions = $testCases | Where-Object { Test-XcodeStableRelease -Version $_ }
$majorXcodeVersions = $stableXcodeVersions | ForEach-Object { $_.Split(".")[0] } | Select-Object -Unique $majorXcodeVersions = $stableXcodeVersions | ForEach-Object { $_.Split(".")[0] } | Select-Object -Unique
$testCases = $majorXcodeVersions | ForEach-Object { $testCases = $majorXcodeVersions | ForEach-Object {
$majorXcodeVersion = $_ $majorXcodeVersion = $_
@@ -76,7 +76,7 @@ Describe "Xcode" {
$variableName = "XCODE_${MajorXcodeVersion}_DEVELOPER_DIR" $variableName = "XCODE_${MajorXcodeVersion}_DEVELOPER_DIR"
$actualPath = Get-EnvironmentVariable $variableName $actualPath = Get-EnvironmentVariable $variableName
$expectedPath = Join-Path (Get-XcodeRootPath -Version $ExpectedVersion) "Contents/Developer" $expectedPath = Join-Path (Get-XcodeRootPath -Version $ExpectedVersion) "Contents/Developer"
$actualPath | Should -Exist $actualPath | Should -Exist
$actualPath | Should -Be $expectedPath $actualPath | Should -Be $expectedPath
} }
@@ -84,15 +84,15 @@ Describe "Xcode" {
} }
Describe "Xcode simulators" { Describe "Xcode simulators" {
$XCODE_VERSIONS | Where-Object { Test-XcodeStableVersion $_ } | ForEach-Object { $XCODE_VERSIONS | Where-Object { Test-XcodeStableRelease -Version $_ } | ForEach-Object {
Switch-Xcode -Version $_ Switch-Xcode -Version $_
Context "$_" { Context "$_" {
It "No duplicates in devices" { It "No duplicates in devices" {
[array]$devicesList = @(Get-XcodeDevicesList | Where-Object { $_ }) [array]$devicesList = @(Get-XcodeDevicesList | Where-Object { $_ })
Validate-ArrayWithoutDuplicates $devicesList -Because "Found duplicate device simulators" Validate-ArrayWithoutDuplicates $devicesList -Because "Found duplicate device simulators"
} }
It "No duplicates in pairs" { It "No duplicates in pairs" {
[array]$pairsList = @(Get-XcodePairsList | Where-Object { $_ }) [array]$pairsList = @(Get-XcodePairsList | Where-Object { $_ })
Validate-ArrayWithoutDuplicates $pairsList -Because "Found duplicate pairs simulators" Validate-ArrayWithoutDuplicates $pairsList -Because "Found duplicate pairs simulators"

View File

@@ -2,7 +2,7 @@
"xcode": { "xcode": {
"default": "11.7", "default": "11.7",
"versions": [ "versions": [
"12.2_beta", "12", "12_beta", "11.7", "11.6", "11.5", "11.4.1", "11.4", "11.3.1", "11.2.1", "11.1", "11", "10.3" "12.2_beta", "12", "11.7", "11.6", "11.5", "11.4.1", "11.4", "11.3.1", "11.2.1", "11.1", "11", "10.3"
] ]
}, },
"xamarin": { "xamarin": {

View File

@@ -2,7 +2,7 @@
"xcode": { "xcode": {
"default": "11.7", "default": "11.7",
"versions": [ "versions": [
"12.2_beta", "12_beta", "11.7" "12.2_beta", "11.7"
] ]
}, },
"xamarin": { "xamarin": {

View File

@@ -4,7 +4,7 @@
*** ***
# Microsoft Windows Server 2019 Datacenter # Microsoft Windows Server 2019 Datacenter
- OS Version: 10.0.17763 Build 1457 - OS Version: 10.0.17763 Build 1457
- Image Version: 20200920.1 - Image Version: 20201004.1
## Enabled windows optional features ## Enabled windows optional features
- Windows Subsystem for Linux - Windows Subsystem for Linux
@@ -18,8 +18,8 @@
- Python 3.7.9 - Python 3.7.9
- Ruby 2.5.8p224 - Ruby 2.5.8p224
- Go 1.14.9 - Go 1.14.9
- PHP 7.4.9 - PHP 7.4.11
- Julia 1.5.1 - Julia 1.5.2
- Perl 5.32.0 - Perl 5.32.0
- Node 12.18.4 - Node 12.18.4
@@ -27,16 +27,16 @@
- Chocolatey 0.10.15 - Chocolatey 0.10.15
- Vcpkg 2020.06.15 - Vcpkg 2020.06.15
- NPM 6.14.6 - NPM 6.14.6
- Yarn 1.22.5 - Yarn 1.22.10
- pip 20.2.3 (python 3.7) - pip 20.2.3 (python 3.7)
- Miniconda 4.6.14 - Miniconda 4.6.14
- RubyGems 3.1.4 - RubyGems 3.1.4
- Helm 3.3.3 - Helm 3.3.4
- Composer 1.10.13 - Composer 1.10.13
- NuGet 5.7.0.6726 - NuGet 5.7.0.6726
### Project Management ### Project Management
- Ant 1.10.8 - Ant 1.10.9
- Maven 3.6.3 - Maven 3.6.3
- Gradle 6.6 - Gradle 6.6
- sbt 1.3.13 - sbt 1.3.13
@@ -44,15 +44,16 @@
### Tools ### Tools
- Azure CosmosDb Emulator 2.11.5.0 - Azure CosmosDb Emulator 2.11.5.0
- azcopy 10.6.0 - azcopy 10.6.0
- Bazel 3.5.0 - Bazel 3.5.1
- Bazelisk 1.6.1 - Bazelisk 1.6.1
- CMake 3.18.2 - CMake 3.18.3
- CodeQL Action Bundle 2.2.5
- R 4.0.2 - R 4.0.2
- Docker 19.03.12 - Docker 19.03.12
- Docker-compose 1.27.2 - Docker-compose 1.27.2
- Git 2.28.0 - Git 2.28.0
- Git LFS 2.11.0 - Git LFS 2.11.0
- Google Cloud SDK 310.0.0 - Google Cloud SDK 312.0.0
- InnoSetup 6.0.5 - InnoSetup 6.0.5
- jq 1.6 - jq 1.6
- Kubectl 1.19.1 - Kubectl 1.19.1
@@ -63,10 +64,10 @@
- NSIS v3.06.1 - NSIS v3.06.1
- Newman 5.2.0 - Newman 5.2.0
- OpenSSL 1.1.1 - OpenSSL 1.1.1
- Packer 1.6.2 - Packer 1.6.3
- Pulumi v2.10.1 - Pulumi v2.11.2
- SQLPS 1.0 - SQLPS 1.0
- SQLServer PS 21.1.18226 - SQLServer PS 21.1.18228
- Subversion (SVN) 1.14.0 - Subversion (SVN) 1.14.0
- ghc 8.10.2 - ghc 8.10.2
- Cabal 3.2.0.0 - Cabal 3.2.0.0
@@ -75,16 +76,17 @@
- zstd 1.4.5 - zstd 1.4.5
- VSWhere 2.8.4 - VSWhere 2.8.4
- 7zip 19.00 - 7zip 19.00
- yamllint 1.24.2 - yamllint 1.25.0
### CLI Tools ### CLI Tools
- Azure CLI 2.11.1 - Azure CLI 2.12.1
- Azure DevOps CLI extension 0.18.0 - Azure DevOps CLI extension 0.18.0
- AWS CLI 2.0.50 - Azure Dev Spaces CLI 1.0.20200921.3
- AWS SAM CLI 1.2.0 - AWS CLI 2.0.54
- AWS SAM CLI 1.4.0
- AWS Session Manager CLI 1.1.61.0 - AWS Session Manager CLI 1.1.61.0
- Alibaba Cloud CLI 3.0.59 - Alibaba Cloud CLI 3.0.59
- Cloud Foundry CLI 6.52.0 - Cloud Foundry CLI 6.53.0
- Hub CLI 2.14.2 - Hub CLI 2.14.2
- GitHub CLI 1.0.0 - GitHub CLI 1.0.0
@@ -93,16 +95,16 @@
#### Packages #### Packages
- bindgen 0.55.1 - bindgen 0.55.1
- cbindgen 0.14.5 - cbindgen 0.14.6
- cargo-audit 0.12.0 - cargo-audit 0.12.1
- cargo-outdated v0.9.11 - cargo-outdated v0.9.11
### Browsers and webdrivers ### Browsers and webdrivers
- Google Chrome 85.0.4183.102 - Google Chrome 85.0.4183.121
- Chrome Driver 85.0.4183.87 - Chrome Driver 85.0.4183.87
- Microsoft Edge 85.0.564.51 - Microsoft Edge 85.0.564.68
- Microsoft Edge Driver 85.0.564.51 - Microsoft Edge Driver 85.0.564.68
- Mozilla Firefox 80.0.1 - Mozilla Firefox 81.0.1
- Gecko Driver 0.27.0 - Gecko Driver 0.27.0
- IE Driver 3.150.1.0 - IE Driver 3.150.1.0
@@ -152,7 +154,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 8.17.0 | x64 | | 8.17.0 | x64 |
| 10.22.1 | x64 | | 10.22.1 | x64 |
| 12.18.4 | x64 | | 12.18.4 | x64 |
| 14.11.0 | x64 | | 14.13.0 | x64 |
#### Python #### Python
@@ -162,7 +164,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 3.5.4 | x64, x86 | | 3.5.4 | x64, x86 |
| 3.6.8 | x64, x86 | | 3.6.8 | x64, x86 |
| 3.7.9 (Default) | x64, x86 | | 3.7.9 (Default) | x64, x86 |
| 3.8.5 | x64, x86 | | 3.8.6 | x64, x86 |
#### Ruby #### Ruby
@@ -177,8 +179,8 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### PyPy #### PyPy
| Python Version | Architecture | PyPy Version | | Python Version | Architecture | PyPy Version |
| -------------- | ------------ | ------------ | | -------------- | ------------ | ------------ |
| 2.7.13 | x86 | PyPy 7.3.1 with MSC v.1912 32 bit | | 2.7.13 | x86 | PyPy 7.3.2 with MSC v.1927 32 bit |
| 3.6.9 | x86 | PyPy 7.3.1 with MSC v.1912 32 bit | | 3.6.9 | x86 | PyPy 7.3.2 with MSC v.1927 32 bit |
@@ -186,12 +188,12 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### PostgreSQL #### PostgreSQL
| Property | Value | | Property | Value |
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------ | | -------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| ServiceName | postgresql-x64-12 | | ServiceName | postgresql-x64-13 |
| Version | 12.4 | | Version | 13.0 |
| ServiceStatus | Stopped | | ServiceStatus | Stopped |
| ServiceStartType | Disabled | | ServiceStartType | Disabled |
| EnvironmentVariables | PGBIN=C:\Program Files\PostgreSQL\12\bin <br> PGDATA=C:\Program Files\PostgreSQL\12\data <br> PGROOT=C:\Program Files\PostgreSQL\12 | | EnvironmentVariables | PGBIN=C:\Program Files\PostgreSQL\13\bin <br> PGDATA=C:\Program Files\PostgreSQL\13\data <br> PGROOT=C:\Program Files\PostgreSQL\13 |
| Path | C:\Program Files\PostgreSQL\12 | | Path | C:\Program Files\PostgreSQL\13 |
| UserName | postgres | | UserName | postgres |
| Password | root | | Password | root |
@@ -206,13 +208,13 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
### Visual Studio Enterprise 2019 ### Visual Studio Enterprise 2019
| Name | Version | Path | | Name | Version | Path |
| ----------------------------- | -------------- | -------------------------------------------------------------- | | ----------------------------- | -------------- | -------------------------------------------------------------- |
| Visual Studio Enterprise 2019 | 16.7.30503.244 | C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise | | Visual Studio Enterprise 2019 | 16.7.30523.141 | C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise |
#### Workloads, components and extensions: #### Workloads, components and extensions:
| Package | Version | | Package | Version |
| ------------------------------------------------------------------------- | -------------- | | ------------------------------------------------------------------------- | -------------- |
| Component.Android.NDK.R16B | 16.7.30427.251 | | Component.Android.NDK.R16B | 16.7.30521.138 |
| Component.Android.SDK25.Private | 16.0.28625.61 | | Component.Android.SDK25.Private | 16.0.28625.61 |
| Component.Android.SDK28 | 16.2.29003.222 | | Component.Android.SDK28 | 16.2.29003.222 |
| Component.Ant | 1.9.3.8 | | Component.Ant | 1.9.3.8 |
@@ -427,7 +429,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Microsoft.VisualStudio.Workload.Universal | 16.7.30310.162 | | Microsoft.VisualStudio.Workload.Universal | 16.7.30310.162 |
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 16.4.29409.204 | | Microsoft.VisualStudio.Workload.VisualStudioExtension | 16.4.29409.204 |
| SSDT Microsoft Analysis Services Projects | 2.9.13 | | SSDT Microsoft Analysis Services Projects | 2.9.13 |
| SSDT SQL Server Integration Services Projects | 3.9 | | SSDT SQL Server Integration Services Projects | 3.10 |
| SSDT Microsoft Reporting Services Projects | 2.6.7 | | SSDT Microsoft Reporting Services Projects | 2.6.7 |
| Windows Driver Kit | 3.11.4516 | | Windows Driver Kit | 3.11.4516 |
| Windows Driver Kit Visual Studio Extension | 10.1.19041.1 | | Windows Driver Kit Visual Studio Extension | 10.1.19041.1 |
@@ -446,12 +448,12 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Microsoft Visual C++ 2013 Minimum Runtime | x64 | 12.0.40660 | | Microsoft Visual C++ 2013 Minimum Runtime | x64 | 12.0.40660 |
| Microsoft Visual C++ 2013 Additional Runtime | x86 | 12.0.21005 | | Microsoft Visual C++ 2013 Additional Runtime | x86 | 12.0.21005 |
| Microsoft Visual C++ 2013 Minimum Runtime | x86 | 12.0.21005 | | Microsoft Visual C++ 2013 Minimum Runtime | x86 | 12.0.21005 |
| Microsoft Visual C++ 2019 Additional Runtime | x64 | 14.27.29016 | | Microsoft Visual C++ 2019 Additional Runtime | x64 | 14.27.29112 |
| Microsoft Visual C++ 2019 Debug Runtime | x64 | 14.27.29016 | | Microsoft Visual C++ 2019 Debug Runtime | x64 | 14.27.29112 |
| Microsoft Visual C++ 2019 Minimum Runtime | x64 | 14.27.29016 | | Microsoft Visual C++ 2019 Minimum Runtime | x64 | 14.27.29112 |
| Microsoft Visual C++ 2019 Additional Runtime | x86 | 14.27.29016 | | Microsoft Visual C++ 2019 Additional Runtime | x86 | 14.27.29112 |
| Microsoft Visual C++ 2019 Debug Runtime | x86 | 14.27.29016 | | Microsoft Visual C++ 2019 Debug Runtime | x86 | 14.27.29112 |
| Microsoft Visual C++ 2019 Minimum Runtime | x86 | 14.27.29016 | | Microsoft Visual C++ 2019 Minimum Runtime | x86 | 14.27.29112 |
### .NET Core SDK ### .NET Core SDK
`Location C:\Program Files\dotnet\sdk` `Location C:\Program Files\dotnet\sdk`
@@ -479,95 +481,41 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- PowerShell 7.0.3 - PowerShell 7.0.3
#### Azure Powershell Modules #### Azure Powershell Modules
| Module | Version | Path | | Module | Version | Path |
| ------- | -------------------------------------------------------------------------------------- | ------------------------------ | | ------- | ----------------------------------------------------------------------------------------------- | ------------------------------ |
| Az | 1.0.0<br>1.6.0<br>2.3.2<br>2.6.0<br>3.1.0<br>3.5.0<br>3.8.0<br>4.3.0<br>4.4.0<br>4.6.0 | C:\Modules\az_\<version\> | | Az | 1.0.0<br>1.6.0<br>2.3.2<br>2.6.0<br>3.1.0<br>3.5.0<br>3.8.0<br>4.3.0<br>4.4.0<br>4.6.0<br>4.7.0 | C:\Modules\az_\<version\> |
| Azure | 2.1.0 [Installed]<br>3.8.0<br>4.2.1<br>5.1.1<br>5.3.0 | C:\Modules\azure_\<version\> | | Azure | 2.1.0 [Installed]<br>3.8.0<br>4.2.1<br>5.1.1<br>5.3.0 | C:\Modules\azure_\<version\> |
| AzureRM | 2.1.0 [Installed]<br>3.8.0<br>4.2.1<br>5.1.1<br>6.7.0<br>6.13.1 | C:\Modules\azurerm_\<version\> | | AzureRM | 2.1.0 [Installed]<br>3.8.0<br>4.2.1<br>5.1.1<br>6.7.0<br>6.13.1 | C:\Modules\azurerm_\<version\> |
``` ```
Azure PowerShell module 2.1.0 and AzureRM PowerShell module 2.1.0 are installed Azure PowerShell module 2.1.0 and AzureRM PowerShell module 2.1.0 are installed
and are available via 'Get-Module -ListAvailable'. and are available via 'Get-Module -ListAvailable'.
All other versions are saved but not installed. All other versions are saved but not installed.
``` ```
#### Powershell Modules #### Powershell Modules
| Module | Version | | Module | Version |
| ------------------ | ------------------ | | ------------------ | --------------------------- |
| DockerMsftProvider | 1.0.0.8 | | DockerMsftProvider | 1.0.0.8 |
| MarkdownPS | 1.9 | | MarkdownPS | 1.9 |
| Pester | 3.4.0<br>5.0.4 | | Pester | 3.4.0<br>5.0.4 |
| PowerShellGet | 1.0.0.1<br>2.2.4.1 | | PowerShellGet | 1.0.0.1<br>2.2.4.1<br>2.2.5 |
| PSWindowsUpdate | 2.2.0.2 | | PSWindowsUpdate | 2.2.0.2 |
| SqlServer | 21.1.18226 | | SqlServer | 21.1.18228 |
| VSSetup | 2.2.16 | | VSSetup | 2.2.16 |
### Android SDK Tools ### Android
| Package Name | Description | | Package Name | Version |
| -------------- | ------------------------------------------- | | -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| platform-tools | Android SDK Platform-Tools, Revision 30.0.4 | | Android SDK Platform-Tools | 30.0.4 |
| tools | Android SDK Tools 26.1.1, Revision 26.1.1 | | Android SDK Tools | 26.1.1 |
| Android SDK Platforms | android-30 (rev 3)<br>android-29 (rev 5)<br>android-28 (rev 6)<br>android-27 (rev 3)<br>android-26 (rev 2)<br>android-25 (rev 3)<br>android-24 (rev 2)<br>android-23 (rev 3)<br>android-22 (rev 2)<br>android-21 (rev 2)<br>android-20 (rev 2)<br>android-19 (rev 4) |
### Android SDK Platforms | Android SDK Build-tools | 30.0.0 30.0.1 30.0.2<br>29.0.0 29.0.1 29.0.2 29.0.3<br>28.0.0 28.0.1 28.0.2 28.0.3<br>27.0.0 27.0.1 27.0.2 27.0.3<br>26.0.0 26.0.1 26.0.2 26.0.3<br>25.0.0 25.0.1 25.0.2 25.0.3<br>24.0.0 24.0.1 24.0.2 24.0.3<br>23.0.1 23.0.2 23.0.3<br>22.0.1<br>21.1.2<br>20.0.0<br>19.1.0 |
`Location C:\Program Files (x86)\Android\android-sdk\platforms` | NDK | 21.3.6528147 |
| Package Name | Description | | Android Support Repository | 47.0.0 |
| ------------ | ------------------------------------------ | | 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 |
| android-19 | Android SDK Platform 19, Revision 4 | | Google Play services | 49 |
| android-21 | Android SDK Platform 21, Revision 2 | | Google Repository | 58 |
| android-22 | Android SDK Platform 22, Revision 2 | | SDK Patch Applier v4 | 1 |
| android-23 | Android SDK Platform 23, Revision 3 | | CMake | 3.10.2<br>3.6.4111459 |
| android-24 | Android SDK Platform 24, Revision 2 |
| android-25 | Android SDK Platform 25, Revision 3 |
| android-26 | Android SDK Platform 26, Revision 2 |
| android-27 | Android SDK Platform 27, Revision 3 |
| android-28 | Android SDK Platform 28, rev 6, Revision 6 |
| android-29 | Android SDK Platform 29, Revision 5 |
| android-30 | Android SDK Platform 30, Revision 3 |
### Android SDK Build-Tools
`Location C:\Program Files (x86)\Android\android-sdk\build-tools`
| Package Name | Description |
| ------------------ | ---------------------------------------- |
| build-tools-19.1.0 | Android SDK Build-Tools, Revision 19.1.0 |
| build-tools-20.0.0 | Android SDK Build-Tools, Revision 20.0.0 |
| build-tools-21.1.2 | Android SDK Build-Tools, Revision 21.1.2 |
| build-tools-22.0.1 | Android SDK Build-Tools, Revision 22.0.1 |
| build-tools-23.0.1 | Android SDK Build-Tools, Revision 23.0.1 |
| build-tools-23.0.2 | Android SDK Build-Tools, Revision 23.0.2 |
| build-tools-23.0.3 | Android SDK Build-Tools, Revision 23.0.3 |
| build-tools-24.0.0 | Android SDK Build-Tools, Revision 24.0.0 |
| build-tools-24.0.1 | Android SDK Build-Tools, Revision 24.0.1 |
| build-tools-24.0.2 | Android SDK Build-Tools, Revision 24.0.2 |
| build-tools-24.0.3 | Android SDK Build-Tools, Revision 24.0.3 |
| build-tools-25.0.0 | Android SDK Build-Tools, Revision 25.0.0 |
| build-tools-25.0.1 | Android SDK Build-Tools, Revision 25.0.1 |
| build-tools-25.0.2 | Android SDK Build-Tools, Revision 25.0.2 |
| build-tools-25.0.3 | Android SDK Build-Tools, Revision 25.0.3 |
| build-tools-26.0.0 | Android SDK Build-Tools, Revision 26.0.0 |
| build-tools-26.0.1 | Android SDK Build-Tools, Revision 26.0.1 |
| build-tools-26.0.2 | Android SDK Build-Tools, Revision 26.0.2 |
| build-tools-26.0.3 | Android SDK Build-Tools, Revision 26.0.3 |
| build-tools-27.0.0 | Android SDK Build-Tools, Revision 27.0.0 |
| build-tools-27.0.1 | Android SDK Build-Tools, Revision 27.0.1 |
| build-tools-27.0.2 | Android SDK Build-Tools, Revision 27.0.2 |
| build-tools-27.0.3 | Android SDK Build-Tools, Revision 27.0.3 |
| build-tools-28.0.0 | Android SDK Build-Tools, Revision 28.0.0 |
| build-tools-28.0.1 | Android SDK Build-Tools, Revision 28.0.1 |
| build-tools-28.0.2 | Android SDK Build-Tools, Revision 28.0.2 |
| build-tools-28.0.3 | Android SDK Build-Tools, Revision 28.0.3 |
| build-tools-29.0.0 | Android SDK Build-Tools, Revision 29.0.0 |
| build-tools-29.0.1 | Android SDK Build-Tools, Revision 29.0.1 |
| build-tools-29.0.2 | Android SDK Build-Tools, Revision 29.0.2 |
| build-tools-29.0.3 | Android SDK Build-Tools, Revision 29.0.3 |
| build-tools-30.0.0 | Android SDK Build-Tools, Revision 30.0.0 |
| build-tools-30.0.1 | Android SDK Build-Tools, Revision 30.0.1 |
| build-tools-30.0.2 | Android SDK Build-Tools, Revision 30.0.2 |
### Android Extra Packages
| Package Name | Version |
| -------------------------- | ------------ |
| Android Support Repository | 47.0.0 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 21.3.6528147 |
### Cached Docker images ### Cached Docker images
- mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019 - mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019