From fad0a6e41dd91851d69bcc2b26de0f07ff56f31a Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Mon, 11 May 2020 18:26:20 +0300 Subject: [PATCH 1/4] Install Go to hostedtoolcache directory on Ubuntu image (#848) * Move go location to the toolcache --- images/linux/scripts/installers/go.sh | 15 +++++++++------ images/linux/ubuntu1604.json | 26 +++++++++++++------------- images/linux/ubuntu1804.json | 26 +++++++++++++------------- 3 files changed, 35 insertions(+), 32 deletions(-) diff --git a/images/linux/scripts/installers/go.sh b/images/linux/scripts/installers/go.sh index 8a16eef84667..c454f59ffe63 100644 --- a/images/linux/scripts/installers/go.sh +++ b/images/linux/scripts/installers/go.sh @@ -13,8 +13,8 @@ golangTags="/tmp/golang_tags.json" # $2=IsDefaultVersion (true or false) function InstallGo () { version=$( getFullGoVersion $1 ) - downloadVersion=$version.linux-amd64.tar.gz - goFolder=/usr/local/go$1 + downloadVersion="go$version.linux-amd64.tar.gz" + goFolder="$AGENT_TOOLSDIRECTORY/go/$version/x64" echo "Install Go $version" curl -sL https://dl.google.com/go/${downloadVersion} -o ${downloadVersion} @@ -22,7 +22,10 @@ function InstallGo () { tar -C $goFolder -xzf $downloadVersion --strip-components=1 go rm $downloadVersion echo "GOROOT_${1//./_}_X64=$goFolder" | tee -a /etc/environment - DocumentInstalledItem "Go $1 ($($goFolder/bin/go version))" + DocumentInstalledItem "Go $version ($($goFolder/bin/go version))" + + # Create symlink in old location /usr/local/go to new location + ln -s $goFolder /usr/local/go$version # If this version of Go is to be the default version, # symlink it into the path and point GOROOT to it. @@ -37,8 +40,8 @@ function getFullGoVersion () { local pattern="refs/tags/go$1([.0-9]{0,3})$" local query='[.[] | select( .ref | test($pattern))] | .[-1] | .ref' refValue=$(jq --arg pattern "$pattern" "$query" $golangTags) - version=$(echo "$refValue" | cut -d '/' -f 3) - version=$(echo "${version//\"}") # go1.12.17 + version=$(echo "$refValue" | cut -d '/' -f 3 | awk -F 'go' '{print $2}') + version=$(echo "${version//\"}") # 1.12.17 echo $version } @@ -52,4 +55,4 @@ for go in ${GO_VERSIONS}; do else InstallGo $go false fi -done \ No newline at end of file +done diff --git a/images/linux/ubuntu1604.json b/images/linux/ubuntu1604.json index fc47d0e91143..5aa162f0d8f7 100644 --- a/images/linux/ubuntu1604.json +++ b/images/linux/ubuntu1604.json @@ -251,19 +251,6 @@ ], "execute_command": "/bin/sh -c '{{ .Vars }} {{ .Path }}'" }, - { - "type": "shell", - "scripts": [ - "{{template_dir}}/scripts/installers/go.sh" - ], - "environment_vars": [ - "METADATA_FILE={{user `metadata_file`}}", - "HELPER_SCRIPTS={{user `helper_script_folder`}}", - "GO_VERSIONS={{user `go_versions`}}", - "GO_DEFAULT={{user `go_default`}}" - ], - "execute_command": "chmod +x {{ .Path }}; sudo {{ .Vars }} {{ .Path }}" - }, { "type": "file", "source": "{{template_dir}}/toolcache-1604.json", @@ -292,6 +279,19 @@ ], "execute_command": "sudo sh -c '{{ .Vars }} {{ .Path }}'" }, + { + "type": "shell", + "scripts": [ + "{{template_dir}}/scripts/installers/go.sh" + ], + "environment_vars": [ + "METADATA_FILE={{user `metadata_file`}}", + "HELPER_SCRIPTS={{user `helper_script_folder`}}", + "GO_VERSIONS={{user `go_versions`}}", + "GO_DEFAULT={{user `go_default`}}" + ], + "execute_command": "chmod +x {{ .Path }}; sudo {{ .Vars }} {{ .Path }}" + }, { "type": "shell", "scripts":[ diff --git a/images/linux/ubuntu1804.json b/images/linux/ubuntu1804.json index 2471106f3291..8408704f5659 100644 --- a/images/linux/ubuntu1804.json +++ b/images/linux/ubuntu1804.json @@ -255,19 +255,6 @@ ], "execute_command": "/bin/sh -c '{{ .Vars }} {{ .Path }}'" }, - { - "type": "shell", - "scripts": [ - "{{template_dir}}/scripts/installers/go.sh" - ], - "environment_vars": [ - "METADATA_FILE={{user `metadata_file`}}", - "HELPER_SCRIPTS={{user `helper_script_folder`}}", - "GO_VERSIONS={{user `go_versions`}}", - "GO_DEFAULT={{user `go_default`}}" - ], - "execute_command": "chmod +x {{ .Path }}; sudo {{ .Vars }} {{ .Path }}" - }, { "type": "file", "source": "{{template_dir}}/toolcache-1804.json", @@ -296,6 +283,19 @@ ], "execute_command": "sudo sh -c '{{ .Vars }} {{ .Path }}'" }, + { + "type": "shell", + "scripts": [ + "{{template_dir}}/scripts/installers/go.sh" + ], + "environment_vars": [ + "METADATA_FILE={{user `metadata_file`}}", + "HELPER_SCRIPTS={{user `helper_script_folder`}}", + "GO_VERSIONS={{user `go_versions`}}", + "GO_DEFAULT={{user `go_default`}}" + ], + "execute_command": "chmod +x {{ .Path }}; sudo {{ .Vars }} {{ .Path }}" + }, { "type": "shell", "scripts":[ From a456ede464d5b9962e9a37ef33935e2fc4d80e82 Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Mon, 11 May 2020 19:46:36 +0300 Subject: [PATCH 2/4] Install Go to hostedtoolcache directory on Windows image (#849) * Move installed go versions to toolcache directory --- images/win/scripts/Installers/Install-Go.ps1 | 26 +++++++++++-------- images/win/scripts/Installers/Validate-Go.ps1 | 6 ++--- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/images/win/scripts/Installers/Install-Go.ps1 b/images/win/scripts/Installers/Install-Go.ps1 index 6d98ef800f30..c5d4c144c32d 100644 --- a/images/win/scripts/Installers/Install-Go.ps1 +++ b/images/win/scripts/Installers/Install-Go.ps1 @@ -29,36 +29,40 @@ function Install-GoVersion # Extract the zip archive. It contains a single directory named "go". Write-Host "Extracting Go $latestVersion..." - Expand-Archive -Path $goArchPath -DestinationPath "C:\" -Force + $toolDirectory = Join-Path $env:AGENT_TOOLSDIRECTORY "go\$latestVersion" + 7z.exe x $goArchPath -o"$toolDirectory" -y | Out-Null + + # Rename the extracted "go" directory to "x64" for full path "C:\hostedtoolcache\windows\Go\1.14.2\x64\..." + Rename-Item -path "$toolDirectory\go" -newName "x64" + $fullArchPath = "$toolDirectory\x64" # Delete unnecessary files to conserve space Write-Host "Cleaning directories of Go $latestVersion..." - if (Test-Path "C:\go\doc") + if (Test-Path "$fullArchPath\doc") { - Remove-Item -Recurse -Force "C:\go\doc" + Remove-Item -Recurse -Force "$fullArchPath\doc" } - if (Test-Path "C:\go\blog") + if (Test-Path "$fullArchPath\blog") { - Remove-Item -Recurse -Force "C:\go\blog" + Remove-Item -Recurse -Force "$fullArchPath\blog" } - # Rename the extracted "go" directory to include the Go version number (to support side-by-side versions of Go). - $newDirName = "Go$latestVersion" - Rename-Item -path "C:\go" -newName $newDirName + # Create symlink in old location + New-Item -Path "C:\go$latestVersion" -ItemType SymbolicLink -Value $fullArchPath # Make this the default version of Go? if ($addToDefaultPath) { Write-Host "Adding Go $latestVersion to the path..." # Add the Go binaries to the path. - Add-MachinePathItem "C:\$newDirName\bin" | Out-Null + Add-MachinePathItem "$fullArchPath\bin" | Out-Null # Set the GOROOT environment variable. - setx GOROOT "C:\$newDirName" /M | Out-Null + setx GOROOT "$fullArchPath" /M | Out-Null } # Done Write-Host "Done installing Go $latestVersion." - return "C:\$newDirName" + return $fullArchPath } # Install Go diff --git a/images/win/scripts/Installers/Validate-Go.ps1 b/images/win/scripts/Installers/Validate-Go.ps1 index 059ea8fabe66..4c88cc1dba61 100644 --- a/images/win/scripts/Installers/Validate-Go.ps1 +++ b/images/win/scripts/Installers/Validate-Go.ps1 @@ -11,9 +11,9 @@ function Get-GoVersion [String]$goVersion ) Write-Host "Check if $goVersion is presented in the system" - $DestinationPath = "$($env:SystemDrive)\" - $goDirectory = Get-ChildItem -Path $DestinationPath -Filter "Go$goVersion*" | Select-Object -First 1 - $goPath = Join-Path $env:SystemDrive $goDirectory + $destinationPath = "$($env:AGENT_TOOLSDIRECTORY)\go" + $goDirectory = Get-ChildItem -Path $destinationPath -Filter "$goVersion*" | Select-Object -First 1 + $goPath = Join-Path $destinationPath "$goDirectory\x64" $env:Path = "$goPath\bin;" + $env:Path $version = $(go version) From 0f8578d80404cfd4a7bb75e96afe9803a345178d Mon Sep 17 00:00:00 2001 From: Image generation service account Date: Mon, 11 May 2020 21:03:45 +0000 Subject: [PATCH 3/4] Updating readme file for win19 version 20200430.2 --- images/win/Windows2019-Readme.md | 39 ++++++++++++++++++++------------ 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/images/win/Windows2019-Readme.md b/images/win/Windows2019-Readme.md index bee43de27f9a..13e5f4ec4822 100644 --- a/images/win/Windows2019-Readme.md +++ b/images/win/Windows2019-Readme.md @@ -1,6 +1,7 @@ + # Windows Server 2019 -The following software is installed on machines with the 20200426.1 update. +The following software is installed on machines with the 20200430.2 update. Components marked with **\*** have been upgraded since the previous version of the image. @@ -170,7 +171,7 @@ _Version:_ 1.1.1809.18001
## AWS CLI -_Version:_ aws-cli 2.0.9
+_Version:_ aws-cli 2.0.10
## Android SDK Build Tools @@ -413,6 +414,10 @@ _Location:_ C:\Modules\az_3.1.0\Az\3.1.0\Az.psd1 This version is saved but not installed _Location:_ C:\Modules\az_3.5.0\Az\3.5.0\Az.psd1 +#### 3.8.0 + +This version is saved but not installed +_Location:_ C:\Modules\az_3.8.0\Az\3.8.0\Az.psd1 ## TLS12 @@ -421,21 +426,17 @@ _Description:_ .NET has been configured to use TLS 1.2 by default ## Azure CLI -_Version:_ 2.4.0 +_Version:_ 2.5.0 * _Environment:_ * PATH: contains location of az.cmd ## AWS SAM CLI -_Version:_ 0.47.0
+_Version:_ 0.48.0
## Azure DevOps Cli extension -_Version:_ azure-devops 0.18.0 - -## Python - -_Version:_ 2.7.17 (x64)
_Version:_ 3.5.4 (x64)
_Version:_ 3.6.8 (x64)
_Version:_ 3.7.6 (x64)
_Version:_ 3.8.2 (x64)
_Version:_ 2.7.17 (x86)
_Version:_ 3.5.4 (x86)
_Version:_ 3.6.8 (x86)
_Version:_ 3.7.6 (x86)
_Version:_ 3.8.2 (x86)

__System default version:__ Python 3.7.6
_Environment:_
* Location: C:\hostedtoolcache\windows\Python\3.7.6\x64
* PATH: contains the location of Python 3.7.6
+_Version:_ azure-devops 1.25.9 ## PyPy @@ -445,6 +446,14 @@ _Version:_ 2.7.13 (x86)
_Version:_ 3.6.9 (x86)
_Version:_ 2.4.10 (x64)
_Version:_ 2.5.8 (x64)
_Version:_ 2.6.6 (x64)
_Version:_ 2.7.1 (x64)

__System default version:__ Ruby 2.5.8p224
_Environment:_
* Location: C:\hostedtoolcache\windows\Ruby\2.5.8\x64\bin
* PATH: contains the location of Ruby 2.5.8p224
* Gem Version: 3.1.2
+## Python (x64) + +_Version:_ 2.7.18
_Version:_ 3.5.4
_Version:_ 3.6.8
_Version:_ 3.7.7
_Version:_ 3.8.2

__System default version:__ Python 3.7.7
_Environment:_
* Location: C:\hostedtoolcache\windows\Python\3.7.7\x64
* PATH: contains the location of Python 3.7.7
+ +## Python (x86) + +_Version:_ 2.7.18
_Version:_ 3.5.4
_Version:_ 3.6.8
_Version:_ 3.7.7
_Version:_ 3.8.2
+ ## OpenSSL _Version:_ 1.1.1 at C:\Program Files\OpenSSL\bin\openssl.exe
_Version:_ 1.1.1d at C:\Strawberry\c\bin\openssl.exe
_Version:_ 1.1.1f at C:\Program Files\Git\mingw64\bin\openssl.exe
_Version:_ 1.1.1f at C:\Program Files\Git\usr\bin\openssl.exe
_Version:_ 1.0.2j at C:\Program Files (x86)\Subversion\bin\openssl.exe
@@ -520,8 +529,8 @@ _Environment:_ ## Rust (64-bit) #### 1.43.0 -_Location:_ C:\Rust\.cargo\bin _Environment:_ +* _Location:_ C:\Rust\.cargo\bin * PATH: contains the location of rustc.exe ## Julia (x64) @@ -541,12 +550,12 @@ _Environment:_ ## Google Chrome _version:_ -81.0.4044.122 +81.0.4044.129 ## Microsoft Edge _version:_ -81.0.416.64 +81.0.416.68 ## Mozilla Firefox @@ -583,7 +592,7 @@ _Environment:_ #### Microsoft Edge Driver _version:_ -81.0.416.64 +81.0.416.68 _Environment:_ * EdgeWebDriver: location of msedgedriver.exe @@ -591,7 +600,7 @@ _Environment:_ ## Node.js -_Version:_ 12.16.2
+_Version:_ 12.16.3
_Architecture:_ x64
_Environment:_ * PATH: contains location of node.exe
@@ -645,7 +654,7 @@ _Environment:_ ## CMake -_Version:_ 3.17.1
+_Version:_ 3.17.2
_Environment:_ * PATH: contains location of cmake.exe From 6b8e0df7fc035f5c6e52de805349a78e75e4dadf Mon Sep 17 00:00:00 2001 From: Image generation service account Date: Mon, 11 May 2020 22:51:55 +0000 Subject: [PATCH 4/4] Updating readme file for ubuntu16 version 20200430.2 --- images/linux/Ubuntu1604-README.md | 144 ++++++++++++++++-------------- 1 file changed, 77 insertions(+), 67 deletions(-) diff --git a/images/linux/Ubuntu1604-README.md b/images/linux/Ubuntu1604-README.md index 8b0400432975..2b08fe605a24 100644 --- a/images/linux/Ubuntu1604-README.md +++ b/images/linux/Ubuntu1604-README.md @@ -1,10 +1,13 @@ + # Ubuntu 16.04.6 LTS -The following software is installed on machines with the 20200406.2 update. +The following software is installed on machines with the 20200430.2 update. *** +- Homebrew on Linux (Homebrew 2.2.14 +Homebrew/linuxbrew-core (git revision 8abe3; last commit 2020-04-30)) - 7-Zip 9.20 -- Ansible (ansible 2.9.6) +- Ansible (ansible 2.9.7) - AzCopy (azcopy 7.3.0-netcore) -- Azure CLI (azure-cli 2.3.1) +- Azure CLI (azure-cli 2.5.1) - Azure CLI (azure-devops 0.18.0) - Basic CLI: - curl @@ -17,6 +20,7 @@ The following software is installed on machines with the 20200406.2 update. - libc++-dev - libc++abi-dev - libcurl3 + - libgbm-dev - libicu55 - libunwind8 - locales @@ -34,17 +38,19 @@ The following software is installed on machines with the 20200406.2 update. - wget - zip - zstd -- AWS CLI (aws-cli/1.18.37 Python/2.7.12 Linux/4.15.0-1075-azure botocore/1.15.37) +- Alibaba Cloud CLI (3.0.39) +- AWS CLI (aws-cli/1.18.49 Python/2.7.12 Linux/4.15.0-1082-azure botocore/1.15.49) - build-essential - nvm (0.35.3) - Clang 6.0 (6.0.0) - Clang 8 (8.0.0) - Clang 9 (9.0.1) -- Swift version 5.2.1 (swift-5.2.1-RELEASE) +- Swift version 5.2.3 (swift-5.2.3-RELEASE) Target: x86_64-unknown-linux-gnu -- CMake (cmake version 3.16.2) +- CMake (cmake version 3.17.0) - Docker Compose (docker-compose version 1.25.4, build 8d51620a) - Docker-Moby (Docker version 3.0.11+azure, build eb310fca49568dccd87c6136f774ef6fff2a1b51) +- Docker-Buildx (0.3.1+azure) - .NET Core SDK: - 3.1.201 - 3.1.200 @@ -111,20 +117,20 @@ Target: x86_64-unknown-linux-gnu - 2.1.302 - 2.1.301 - 2.1.300 -- Erlang (Erlang (SMP,ASYNC_THREADS,HIPE) (BEAM) emulator version 10.7) -- Firefox (Mozilla Firefox 74.0.1) +- Erlang (Erlang (SMP,ASYNC_THREADS,HIPE) (BEAM) emulator version 10.7.1) +- Firefox (Mozilla Firefox 75.0) - Geckodriver (0.26.0); Gecko Driver is available via GECKOWEBDRIVER environment variable -- GNU C++ 7.4.0 -- GNU C++ 8.3.0 -- GNU C++ 9.2.1 -- GNU Fortran 8.3.0 -- GNU Fortran 9.2.1 -- Git (2.26.0) +- GNU C++ 7.5.0 +- GNU C++ 8.4.0 +- GNU C++ 9.3.0 +- GNU Fortran 8.4.0 +- GNU Fortran 9.3.0 +- Git (2.26.2) - Git Large File Storage (LFS) (2.10.0) - Hub CLI (2.14.2) -- Google Chrome (Google Chrome 80.0.3987.163 ) -- ChromeDriver 80.0.3987.106 (f68069574609230cf9b635cd784cfb1bf81bb53a-refs/branch-heads/3987@{#882}); Chrome Driver is available via CHROMEWEBDRIVER environment variable -- Google Cloud SDK (287.0.0) +- Google Chrome (Google Chrome 81.0.4044.129 ) +- ChromeDriver 81.0.4044.69 (6813546031a4bc83f717a2ef7cd4ac6ec1199132-refs/branch-heads/4044@{#776}); Chrome Driver is available via CHROMEWEBDRIVER environment variable +- Google Cloud SDK (290.0.1) - Haskell Cabal (cabal-install version 2.0.0.1 compiled using version 2.0.1.1 of the Cabal library ) - Haskell Cabal (cabal-install version 2.2.0.0 @@ -147,47 +153,48 @@ compiled using version 3.2.0.0 of the Cabal library ) - GHC (The Glorious Glasgow Haskell Compilation System, version 8.8.3) - GHC (The Glorious Glasgow Haskell Compilation System, version 8.10.1) - Haskell Stack (Version 2.1.3, Git revision 636e3a759d51127df2b62f90772def126cdf6d1f (7735 commits) x86_64 hpack-0.31.2) -- Heroku (heroku/7.39.2 linux-x64 node-v12.13.0) -- HHVM (HipHop VM 4.52.0 (rel)) +- Heroku (heroku/7.39.5 linux-x64 node-v12.16.2) +- HHVM (HipHop VM 4.55.0 (rel)) - ImageMagick - Azul Zulu OpenJDK: - - 7 (openjdk version "1.7.0_252") - - 8 (openjdk version "1.8.0_242") (default) - - 11 (openjdk version "11.0.6" 2020-01-14 LTS) + - 7 (openjdk version "1.7.0_262") + - 8 (openjdk version "1.8.0_252") (default) + - 11 (openjdk version "11.0.7" 2020-04-14 LTS) - 12 (openjdk version "12.0.2" 2019-07-16) - Ant (Apache Ant(TM) version 1.9.6 compiled on July 20 2018) - Gradle 6.3 - Maven (Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)) - Kind (kind v0.7.0 go1.13.6 linux/amd64) - kubectl (error: Missing or incomplete configuration info. Please point to an existing, complete config file:) -- helm (v3.1.2+gd878d4d) -- Leiningen (Leiningen 2.9.3 on Java 1.8.0_242 OpenJDK 64-Bit Server VM) +- helm (v3.2.0+ge11b7ce) +- Leiningen (Leiningen 2.9.3 on Java 1.8.0_252 OpenJDK 64-Bit Server VM) - Mercurial (Mercurial Distributed SCM (version 4.4.1)) - Miniconda (conda 4.8.2) - Mono (Mono JIT compiler version 6.8.0.105 (tarball Tue Feb 4 21:20:35 UTC 2020)) - MySQL (mysql Ver 14.14 Distrib 5.7.29, for Linux (x86_64) using EditLine wrapper) - MySQL Server (user:root password:root) - MS SQL Server Client Tools -- Node.js (v12.16.1) +- 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' +- Node.js (v12.16.3) - Grunt (grunt-cli v1.2.0) - Gulp (CLI version: 2.2.0 Local version: Unknown) -- n (6.4.0) +- n (6.5.1) - Parcel (1.12.4) - TypeScript (Version 3.8.3) -- Webpack (4.42.1) +- Webpack (4.43.0) - Webpack CLI (3.3.11) - Yarn (1.22.4) -- Bazel (bazel 3.0.0) -- Bazelisk (1.3.0) +- Bazel (bazel 3.1.0) +- Bazelisk (1.4.0) - PhantomJS (2.1.1) -- PHP 5.6 (PHP 5.6.40-26+ubuntu16.04.1+deb.sury.org+1 (cli) ) -- PHP 7.0 (PHP 7.0.33-26+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Mar 20 2020 15:00:31) ( NTS )) -- PHP 7.1 (PHP 7.1.33-14+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Mar 20 2020 13:57:17) ( NTS )) -- PHP 7.2 (PHP 7.2.29-1+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Mar 20 2020 13:54:16) ( NTS )) -- PHP 7.3 (PHP 7.3.16-1+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Mar 20 2020 13:51:21) ( NTS )) -- PHP 7.4 (PHP 7.4.4 (cli) (built: Mar 20 2020 13:47:17) ( NTS )) -- Composer (Composer version 1.10.1 2020-03-13 20:34:27) +- PHP 5.6 (PHP 5.6.40-27+ubuntu16.04.1+deb.sury.org+1 (cli) ) +- PHP 7.0 (PHP 7.0.33-27+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Apr 19 2020 08:00:54) ( NTS )) +- PHP 7.1 (PHP 7.1.33-15+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Apr 19 2020 07:59:08) ( NTS )) +- PHP 7.2 (PHP 7.2.30-1+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Apr 19 2020 07:50:31) ( NTS )) +- PHP 7.3 (PHP 7.3.17-1+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Apr 19 2020 07:44:05) ( NTS )) +- PHP 7.4 (PHP 7.4.5 (cli) (built: Apr 19 2020 07:36:13) ( NTS )) +- Composer (Composer version 1.10.5 2020-04-10 11:44:22) - PHPUnit (PHPUnit 7.5.20 by Sebastian Bergmann and contributors.) - Pollinate - psql (PostgreSQL) 9.5.21 @@ -195,29 +202,31 @@ Local version: Unknown) - ruby (2.3.1p112) - gem (3.1.2) - rustup (1.21.1) -- rust (1.42.0) -- cargo (1.42.0) -- rustfmt (1.4.11-stable) +- rust (1.43.0) +- cargo (1.43.0) +- rustfmt (1.4.12-stable) - clippy (0.0.212) -- rustdoc (1.42.0) +- rustdoc (1.43.0) - bindgen (0.53.2) -- cbindgen (0.14.0) -- Julia (julia version 1.4.0) -- sbt (1.3.9) +- cbindgen (0.14.1) +- Julia (julia version 1.4.1) +- sbt (1.3.10) - Selenium server standalone (available via SELENIUM_JAR_PATH environment variable) - Sphinx Open Source Search Server - Subversion (svn, version 1.9.3 (r1718519)) - Terraform (Terraform v0.12.24) - Packer (1.5.5) - Vcpkg 2020.02.04-unknownhash -- Zeit Now CLI (17.1.1) -- MongoDB on Linux (2020-04-07T01:29:52.795+0000 I CONTROL [initandlisten] db version v4.2.5 -2020-04-07T01:29:52.795+0000 I CONTROL [initandlisten] git version: 2261279b51ea13df08ae708ff278f0679c59dc32 -2020-04-07T01:29:52.795+0000 I CONTROL [initandlisten] OpenSSL version: OpenSSL 1.0.2g 1 Mar 2016) +- Zeit Now CLI (18.0.0) +- MongoDB on Linux (2020-04-30T12:21:47.651+0000 I CONTROL [initandlisten] db version v4.2.6 +2020-04-30T12:21:47.651+0000 I CONTROL [initandlisten] git version: 20364840b8f1af16917e4c23c1b5f5efd8b352f8 +2020-04-30T12:21:47.651+0000 I CONTROL [initandlisten] OpenSSL version: OpenSSL 1.0.2g 1 Mar 2016) +- Haveged 1.9.1-3 +- AWS SAM CLI, version 0.48.0 - Go 1.11 (go version go1.11.13 linux/amd64) - Go 1.12 (go version go1.12.17 linux/amd64) -- Go 1.13 (go version go1.13.9 linux/amd64) -- Go 1.14 (go version go1.14.1 linux/amd64) +- Go 1.13 (go version go1.13.10 linux/amd64) +- Go 1.14 (go version go1.14.2 linux/amd64) - Google Repository 58 - Google Play services 49 - Google APIs 24 @@ -229,7 +238,7 @@ Local version: Unknown) - Android Support Repository 47.0.0 - Android Solver for ConstraintLayout 1.0.2 - Android Solver for ConstraintLayout 1.0.1 -- Android SDK Platform-Tools 29.0.6 +- Android SDK Platform-Tools 30.0.0 - Android SDK Platform 29 - Android SDK Platform 28 - Android SDK Platform 27 @@ -275,7 +284,7 @@ Local version: Unknown) - Android SDK Build-Tools 20.0.0 - Android SDK Build-Tools 19.1.0 - Android SDK Build-Tools 17.0.0 -- Android NDK 21.0.6113669 +- Android NDK 21.1.6352462 - Android ConstraintLayout 1.0.2 - Android ConstraintLayout 1.0.1 - Az Module (1.0.0) @@ -286,25 +295,20 @@ Local version: Unknown) - Az Module (3.1.0) - Az Module (3.5.0) - Cached container images - - node:10 (Digest: sha256:816cfaee24dc2cea534e21d7f9c55f3b22c8bc6af61d8445f8d0178168ef3b28) - - node:12 (Digest: sha256:46f4c17e1edbde36d60a9f6362db7912cfe301bac89afef7cc92421ab3e7ca18) - - buildpack-deps:stretch (Digest: sha256:a711a64b26285b42cd02618a191ec6c99650449f698858e0e2cc0535ab85e4dd) - - debian:9 (Digest: sha256:344470192d10cf7cf0bedcb183effbe99065829a8dbe68e65e703faf46fc10c1) - - debian:8 (Digest: sha256:a77aa078ad4769799286bba5fc198deda5bfd4d0144a24e6aa0c8dddf0a22833) - - node:10-alpine (Digest: sha256:9a88e3bc3f845b74d2fd8adcbc64608736a8be4a3e9dc7aa34fa743e3677a552) - - node:12-alpine (Digest: sha256:6b5b783c9cfe229af0bd5b0b677dd32005bb22d58465f3d0fe7fbd1c60ce068c) + - node:12-alpine (Digest: sha256:84f5c9090cc741421b2376b2393e7d5fa2f89d36167c12eb57aef16dd64ecf6c) + - node:12 (Digest: sha256:5fe210262a6dc0c1f5555976356cf076c7a8c7645b0c781bc8a913881bbe7942) + - node:10-alpine (Digest: sha256:b2db1b026f1b01a6a91f39d8204b89c5c13d2b40a017dd4d9253ab066c9cf2cb) + - alpine:3.9 (Digest: sha256:414e0518bb9228d35e4cd5165567fb91d26c6a214e9c95899e1e056fcd349011) + - alpine:3.10 (Digest: sha256:f0e9534a598e501320957059cb2a23774b4d4072e37c7b2cf7e95b241f019e35) + - jekyll/builder:latest (Digest: sha256:89c952121d275ba475b6611060e2d917434ebe8e125049d647ffefdbef9ca859) + - node:10 (Digest: sha256:e0c512c52c3ca8797fc60ada3698004f5cba13af4a8a5968041edac1b5d98577) + - buildpack-deps:stretch (Digest: sha256:38353fdc334fa612f3dedb3d1e8172c3e63de706ca80260856e5708d0fd1146a) + - debian:9 (Digest: sha256:666ffd4fbcdff07edcbd65f0ec1dc86ed294f5e3be93eb26280575f77427df46) + - debian:8 (Digest: sha256:734728c8e411698485ae644fc988dad06f757565e292b5b85edc084befa37bbb) - alpine:3.8 (Digest: sha256:2bb501e6173d9d006e56de5bce2720eb06396803300fe1687b58a7ff32bf4c14) - - alpine:3.9 (Digest: sha256:115731bab0862031b44766733890091c17924f9b7781b79997f5f163be262178) - - alpine:3.10 (Digest: sha256:7c3773f7bcc969f03f8f653910001d99a9d324b4b9caa008846ad2c3089f5a5f) - - jekyll/builder:latest (Digest: sha256:875de39aa06300c749e26a79f39cdfa31404e4f2dbd2953cd4ebb0442bffda9e) + - ubuntu:14.04 (Digest: sha256:ffc76f71dd8be8c9e222d420dc96901a07b61616689a44c7b3ef6a10b7213de4) - alpine:3.7 (Digest: sha256:8421d9a84432575381bfabd248f1eb56f3aa21d9d7cd2511583c68c9b7511d10) - mcr.microsoft.com/azure-pipelines/node8-typescript:latest (Digest: sha256:e52e60b9f71183969830a3664279b5d8c799b4b0ec2c25a0686f7c02f6a9669a) -- Python: - - Python 2.7.17 - - Python 3.5.9 - - Python 3.6.10 - - Python 3.7.6 - - Python 3.8.2 - Ruby: - Ruby 2.4.10 - Ruby 2.5.8 @@ -317,5 +321,11 @@ Local version: Unknown) - pip (pip 8.1.1 from /usr/lib/python2.7/dist-packages (python 2.7)) - Python3 (Python 3.5.2) - pip3 (pip 8.1.1 from /usr/lib/python3/dist-packages (python 3.5)) +- Python: + - Python 2.7.18 + - Python 3.5.9 + - Python 3.6.10 + - Python 3.7.7 + - Python 3.8.2 - Boost C++ Libraries 1.69.0 - Boost C++ Libraries 1.72.0