Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean way to disable the pcov PHP Extension #3472

Merged
merged 4 commits into from Jun 3, 2021
Merged

Clean way to disable the pcov PHP Extension #3472

merged 4 commits into from Jun 3, 2021

Conversation

sylfabre
Copy link
Contributor

@sylfabre sylfabre commented May 27, 2021

Description

Use phpdismod to disable th pcov PHP extension

Related issue:

#3470

Check list

  • Related issue / work item is attached
  • Tests are written (if applicable)
  • Documentation is updated (if applicable)
  • Changes are tested and related VM images are successfully generated

@miketimofeev
Copy link
Contributor

@shivammathur could you please also take a look at this PR?

@shivammathur
Copy link
Contributor

@sylfabre
Using phpdismod would create a breaking change in shivammathur/setup-php action. That is why I choose to edit the module ini file, which would not.

Anyone using pcov can add extension=pcov.so to a ini file. This is consistent with PHP documentation for loading an extension.

But I understand that phpenmod and phpdismod by ondrej are conventionally used in ubuntu, so if it is too much trouble for Azure users, I'm ok with using phpdismod and will make the necessary changes to setup-php.

So, if using you are using phpdismod, I would recommend adding a line in the docs for ubuntu below PHP version table mentioning that pcov is disabled and can be enabled by using phpenmod.

@sylfabre
Copy link
Contributor Author

sylfabre commented May 28, 2021

@shivammathur Thank you for your feedback and explanation.

The files in the mods-available folder actually are like templates to be copied/symlinked to [context]/conf.d folder of each possible context (apache2, fpm, cli, ...) for which an extension could be enabled. It works the same way as with Apache if you're familiar with it.

So deleting these files' content from mods-available is a bad practice.

You can also simply delete the pcov.ini file from /etc/php/[version]/cli/conf.d folders if you want to disable it without the use of an external tool like phpenmod/phpdismod (I made the assumption that the only relevant context for PHP in Azure DevOps or Github Action is CLI)

@sylfabre
Copy link
Contributor Author

@shivammathur And you could also challenge the default choice of xdebug over pcov.

In my opinion, pcov is going to be the new standard for code coverage as it runs faster and consumes less memory that xdebug (https://medium.com/@nicocabot/speed-up-phpunit-code-coverage-analysis-4e35345b3dad).

That's why we are using pcov at my company.

But in the end, this is a product choice that belongs to you guys!

@shivammathur
Copy link
Contributor

shivammathur commented May 28, 2021

@sylfabre
They are few, but I know projects testing with php-fpm and other sapi as well. So the set of extensions should be consistent. That is why I changed the main module ini file instead of symlink in cli. I'm ok with changing it to use phpdismod as that handles all sapi.

Ideally both pcov and Xdebug should be disabled as they add overhead to PHP and can be enabled if needed in the workflow. But changing this either way would be a breaking change.

@sylfabre
Copy link
Contributor Author

@shivammathur Ok I understand why you changed it that way.

What are the next steps please?

@shivammathur
Copy link
Contributor

Documenting that PCOV extension is disabled, with the steps to enable it using phpenmod would be great. This can be added below the PHP version table similar to how MySQL service is documented.

@miketimofeev What are your thoughts on this.

@sylfabre
Copy link
Contributor Author

@shivammathur I've updated the doc as per your request

shivammathur
shivammathur previously approved these changes May 30, 2021
@AlenaSviridenko
Copy link
Contributor

Hi @sylfabre,
we do not mind making code changes, but updating documentation with instructions how to switch different extensions in PHP is a bit out of scope of our README purpose.
Could you please remove documentation updates, then I will run test CI to validate your changes.

@sylfabre
Copy link
Contributor Author

sylfabre commented Jun 1, 2021

@AlenaSviridenko I did it as per the request of your colleague #3472 (comment)

Let me know if you want the doc or not

@shivammathur
Copy link
Contributor

@AlenaSviridenko I would suggest keeping the documentation to avoid further issues regarding this.

@AlenaSviridenko
Copy link
Contributor

We'd prefer to avoid adding any tool specific instructions to our readme. I understand that we have some for MySQL for example, but we decided that adding instructions for tools will complexify our documentation.
I think, we can have a part of the note like "Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled." without instruction how to switch them.

@shivammathur
Copy link
Contributor

@AlenaSviridenko Fair enough

@miketimofeev
Copy link
Contributor

@sylfabre could you please pull the latest main to your branch and make a change that @AlenaSviridenko suggested in #3472 (comment)?

@sylfabre
Copy link
Contributor Author

sylfabre commented Jun 3, 2021

@miketimofeev Done

@AlenaSviridenko AlenaSviridenko merged commit b870568 into actions:main Jun 3, 2021
dmitry-shibanov added a commit to dmitry-shibanov/virtual-environments that referenced this pull request Jul 7, 2021
commit 7d0d3aa
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jul 1 18:11:39 2021 +0000

    Updating readme file for win16 version 20210628.1 (actions#3668)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 332b6bd
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jul 1 17:13:45 2021 +0000

    Updating readme file for win19 version 20210628.1 (actions#3667)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 5ae2170
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jul 1 11:01:18 2021 +0000

    Updating readme file for macOS-10.15 version 20210626.1 (actions#3662)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 7ffed57
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Jun 30 08:47:42 2021 +0000

    Updating readme file for ubuntu20 version 20210628.1 (actions#3665)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit f785d33
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Jun 30 06:37:02 2021 +0000

    Updating readme file for ubuntu18 version 20210628.1 (actions#3664)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit de7775d
Author: Leonid Lapshin <leonidlapshin@github.com>
Date:   Tue Jun 29 11:59:03 2021 +0300

    [windows] Improve MSYS2 installation (actions#3652)

commit 24387bf
Author: Alena Sviridenko <alenasviridenko@github.com>
Date:   Tue Jun 29 11:51:23 2021 +0300

    Migrate issue templates to .yml (actions#3659)

    * Added issue yml templates

    * Fixed yml syntax

    * Removed md templates

    * updated tool request template

    * fixed windows 2016 naming and bug report dropdown

    * Styling and wording fixes

    * Added validation requirements

    * removed empty issue check

    * Removed issue triager

commit cd92095
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Jun 28 22:01:56 2021 +0000

    Updating readme file for win19 version 20210620.1 (actions#3625)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 19d5b9f
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Jun 28 15:26:36 2021 +0000

    Updating readme file for macOS-10.14 version 20210626.1 (actions#3657)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 851f0df
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Jun 28 14:23:38 2021 +0000

    Updating readme file for macOS-11 version 20210626.1 (actions#3658)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>

commit 20804bc
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Mon Jun 28 10:58:28 2021 +0300

    Remove bicep from software docs and tests for ub16 (actions#3656)

commit c3f3d83
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Sat Jun 26 11:22:49 2021 +0300

    Revert "Updating readme file for ubuntu20 version 20210621.1 (actions#3623)" (actions#3654)

commit 83c974f
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri Jun 25 17:29:27 2021 +0000

    Updating readme file for win16 version 20210620.1 (actions#3624)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 8ebae96
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Fri Jun 25 18:28:19 2021 +0300

    Remove Xcode 12.2&12.3 from macos Big Sur toolset (actions#3653)

commit c103d79
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 24 19:09:51 2021 +0000

    Updating readme file for ubuntu20 version 20210621.1 (actions#3623)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 059dfd8
Author: Darleev <50947177+Darleev@users.noreply.github.com>
Date:   Thu Jun 24 22:55:51 2021 +0700

    [macOS 11] software update week 26 (actions#3648)

    * software update week 26

    * returned previous mono version

commit 405a368
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 24 08:48:57 2021 +0000

    Updating readme file for ubuntu18 version 20210621.1 (actions#3622)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit dd399bc
Author: Marcus Felling <MarcusFelling@users.noreply.github.com>
Date:   Thu Jun 24 03:13:00 2021 -0500

    [Ubuntu] Adding Bicep CLI (actions#3639)

    * Add Bicep CLI to Ubuntu images

    * Use helper download_with_retries

    * remove bicep from deprecated 16.04 image

    * formatting

    Co-authored-by: Marcus Felling <MarcusFelling@microsoft.com>

commit 9e21ab0
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Wed Jun 23 22:20:09 2021 +0300

    Return xcode 12.5 to macos Big Sur (actions#3635)

commit 1a96373
Author: Marcus Felling <MarcusFelling@users.noreply.github.com>
Date:   Wed Jun 23 09:52:45 2021 -0500

    [Windows] Adding Bicep CLI (actions#3600)

    * Add Bicep CLI

    * Correct regex for bicep version

    Co-authored-by: Marcus Felling <MarcusFelling@microsoft.com>

commit d986b25
Author: Drew Skwiers-Koballa <dzsquared@users.noreply.github.com>
Date:   Tue Jun 22 12:14:00 2021 -0700

    Update Dacfx 18.7.1 (actions#3608)

    * update dacfx to 18.5.1

    * update dacfx 18.7.1 Windows

    * update dacfx 18.7.1 Windows

    * revert MD changes

commit a13c907
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue Jun 22 14:17:47 2021 +0000

    Updating readme file for macOS-10.15 version 20210620.1 (actions#3626)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 43b77cd
Author: Alena Sviridenko <alenasviridenko@github.com>
Date:   Tue Jun 22 13:37:53 2021 +0300

    updated Xcode support policy (actions#3637)

commit 4e6b327
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Tue Jun 22 11:36:14 2021 +0300

    Add xcode 12.5.1 to macos-11 image (actions#3629)

commit 83f05ed
Author: Maxim Lobanov <maxim-lobanov@github.com>
Date:   Tue Jun 22 10:21:36 2021 +0300

    Fix macOS 11 label (actions#3633)

commit efcbf00
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Jun 21 19:23:53 2021 +0000

    Updating readme file for macOS-11 version 20210620.1 (actions#3628)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>

commit 83a5e88
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Mon Jun 21 20:02:32 2021 +0300

    Revert "Don't install KB5003638 update as it breaks the VM (actions#3557)" (actions#3627)

    This reverts commit ff4ba2e.

commit 1fb8c5d
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Mon Jun 21 14:09:51 2021 +0300

    [Windows] Improve Pester tests coverage for MSYS2 (actions#3595)

    * Add ShouldReturnZeroExitCodeWithParam function and a new set of tests for MSYS2 tools

    * Change get-command -> Get-Command

    * Remove elevated user, return original path after msys installation and tests, resolve nitpicks

    * Add BeforeEach and AfterEach blocks
    These blocks change the path before each test
    and return the original path after each test

    * Change get-command -> Get-Command

commit 4143d0c
Author: Sujith Quintelier <sujith.quintelier@gmail.com>
Date:   Mon Jun 21 13:06:00 2021 +0200

    Update GenerateResourcesAndImage.ps1 (actions#3616)

    Ubuntu2004 is also a valid option for parameter ImageType

commit b03244b
Author: Aleksandr Chebotov <47745270+al-cheb@users.noreply.github.com>
Date:   Fri Jun 18 16:28:09 2021 +0300

    [macOS] Upgrade Xamarin.Android from 11.3.0.1 to 11.3.0.4 (actions#3603)

commit e9b07be
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri Jun 18 09:23:23 2021 +0000

    Updating readme file for win19 version 20210616.0 (actions#3602)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 0b6b04b
Author: Aleksandr Chebotov <47745270+al-cheb@users.noreply.github.com>
Date:   Fri Jun 18 10:26:34 2021 +0300

    Fix Java_Adopt_Jdk permissions (actions#3605)

commit 82fa8f2
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 17 22:46:27 2021 +0000

    Updating readme file for macOS-10.15 version 20210612.1 (actions#3584)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit cae9ecb
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 17 15:29:15 2021 +0000

    Updating readme file for ubuntu20 version 20210614.1 (actions#3579)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit b52cf39
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 17 11:12:10 2021 +0000

    Updating readme file for win16 version 20210614.1 (actions#3589)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 1eb3d36
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 17 07:54:37 2021 +0000

    Updating readme file for ubuntu18 version 20210614.1 (actions#3580)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 9f07fcc
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Jun 16 07:41:46 2021 +0000

    Updating readme file for macOS-11 version 20210614.1 (actions#3587)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>

commit 7e05e37
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Jun 14 17:47:39 2021 +0000

    Updating readme file for win16 version 20210609.1 (actions#3559)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit bb728f4
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Jun 14 14:15:37 2021 +0000

    Updating readme file for win19 version 20210608.0 (actions#3554)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 4416d54
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu Jun 10 22:33:08 2021 +0300

    [Ubuntu] Remove php installation, tests and software docs for Ubuntu 16 (actions#3541)

    * Remove php installation, tests and software docs for Ubuntu 16

    * Add openssl 1.1.1k installation as python toolcache depends on it

    * Add a comment about openssl installation on Ubuntu 16

commit 6c587eb
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu Jun 10 21:34:49 2021 +0300

    [macOS] Upgrade Xamarin ios and mac versions from .1 to .3 (actions#3564)

commit fd620b0
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu Jun 10 21:34:17 2021 +0300

    [macOS] Upgrade azure powershell from 5.7.0 to 5.9.0 on macOS images (actions#3563)

commit 49967f8
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu Jun 10 21:33:43 2021 +0300

    [ubuntu] Change azure ps module from 5.7.0 to 5.9.0 for Ubuntu 18 & 20 (actions#3562)

commit edd787f
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu Jun 10 21:33:10 2021 +0300

    [Windows] Upgrade az powershell module from 5.7.0 to 5.9.0  (actions#3561)

    * Add az ps module 5.9.0 to the windows images, move 5.7.0 to zip

    * Remove 5.7.0 from zip version as it's usage is low based on the telemetry

commit 9888238
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 10 16:19:27 2021 +0000

    Updating readme file for ubuntu20 version 20210606.1 (actions#3533)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 9ffd5d8
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 10 16:03:55 2021 +0000

    Updating readme file for ubuntu18 version 20210606.1 (actions#3532)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 24ae664
Author: Sergey Dolin <v-sedoli@microsoft.com>
Date:   Thu Jun 10 13:21:02 2021 +0500

    [ubunty] Add note about LLVM repo (actions#3523)

    * Add LLVM libc++ info

    * combine clang, clang-format into LLVM components

    * fix formatting

    Co-authored-by: Sergey Dolin <v-sedoli@micorosoft.com>

commit a9d832d
Author: Sergey Dolin <v-sedoli@microsoft.com>
Date:   Thu Jun 10 13:17:30 2021 +0500

    [ubuntu] installing the latest .NET sdk patch version for every feature version (actions#3550)

    * installing the latest patch version for every feature version

    * simplify versions computing

    * fix space

    Co-authored-by: Sergey Dolin <v-sedoli@micorosoft.com>

commit ff4ba2e
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu Jun 10 09:19:50 2021 +0300

    Don't install KB5003638 update as it breaks the VM (actions#3557)

commit 6afff5d
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Jun 9 10:41:06 2021 +0000

    Updating readme file for macOS-10.15 version 20210607.1 (actions#3547)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit b8c7eb8
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Wed Jun 9 12:46:07 2021 +0300

    Switch the default Xcode version from 12.4 to 12.5 for macOS Big Sur (actions#3545)

commit f66433e
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Jun 9 07:33:51 2021 +0000

    Updating readme file for macOS-11 version 20210608.6 (actions#3553)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>

commit f66fa57
Author: Darleev <50947177+Darleev@users.noreply.github.com>
Date:   Tue Jun 8 15:36:08 2021 +0700

    [ubuntu] post generation doc update (actions#3539)

commit a56b10c
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Tue Jun 8 10:44:41 2021 +0300

    Revert mono version from 6.12.0.140 to 6.12.0.125 (actions#3543)

commit 4da3c8e
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Tue Jun 8 10:44:31 2021 +0300

    Add blackhole audiodevice for macOS Big sur, add sox and Switchaudio-osx versions to the docs (actions#3542)

commit 2ae7ebd
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Tue Jun 8 10:44:17 2021 +0300

    Add Xcode 13.0 to macOS Big Sur image (actions#3540)

commit 395eb43
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Mon Jun 7 20:49:36 2021 +0300

    Added a condition for the $binGhcPath to not depend on the exact Haskell version (actions#3537)

commit 638ad60
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Jun 7 14:49:49 2021 +0000

    Updating readme file for win19 version 20210531.1 (actions#3489)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 22b6f42
Author: Nursultan Kassan <84095700+kassannk@users.noreply.github.com>
Date:   Mon Jun 7 16:00:50 2021 +0300

    [macOS] Adding Swig (actions#3510)

commit f417049
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Jun 7 09:59:33 2021 +0000

    Updating readme file for win16 version 20210531.1 (actions#3488)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 659b9d8
Author: Nursultan Kassan <84095700+kassannk@users.noreply.github.com>
Date:   Mon Jun 7 12:23:47 2021 +0300

    [Windows] Adding Swig (actions#3509)

commit 46ced60
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Sun Jun 6 23:44:10 2021 +0300

    [macOS] Get back pypy to big sur (actions#3524)

commit 3fbceba
Author: Alena Sviridenko <alenasviridenko@github.com>
Date:   Fri Jun 4 18:20:54 2021 +0300

    Add explanation for current enterprises (actions#3527)

    * Added "current enterprises" explanation

    * Fixed article

    Co-authored-by: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>

    Co-authored-by: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>

commit d722f6f
Author: Omar Sandoval <osandov@osandov.com>
Date:   Fri Jun 4 04:36:14 2021 -0700

    [Ubuntu] Install default version of Clang last (actions#3506)

commit 0648d43
Author: agorti <66666946+agorti@users.noreply.github.com>
Date:   Fri Jun 4 17:03:52 2021 +0530

    [windows] update npm registry to https (actions#3521)

commit cf551b1
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Fri Jun 4 09:24:58 2021 +0300

    [macOS] Software updates week 23 — add Xamarin 6_12_9 bundle to Big Sur and Mono 6.12.0.140 to Catalina (actions#3519)

commit b870568
Author: Sylvain <sylfabre@users.noreply.github.com>
Date:   Thu Jun 3 18:12:53 2021 +0200

    [ubuntu] Clean way to disable the pcov PHP Extension (actions#3472)

    * Clean way to disable the pcov PHP Extension

    Fixes actions#3341

    * Update php.sh

    * Update php.sh

    * Documentation

commit 70582d1
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 3 13:30:22 2021 +0000

    Updating readme file for ubuntu16 version 20210531.0 (actions#3490)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 5d24b55
Author: Dmitry Shibanov <dmitry-shibanov@github.com>
Date:   Thu Jun 3 16:28:12 2021 +0300

    [Windows] Add note about Conda (actions#3513)

    * add note about Conda

    * added a note in the same string

    * move note to Get-CondaVersion function

commit 59ca08e
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu Jun 3 14:38:17 2021 +0300

    [macOS] Fix default java postfix in the software readme (actions#3518)

commit 7d7bce1
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 3 11:23:21 2021 +0000

    Updating readme file for macOS-10.15 version 20210531.1 (actions#3497)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit a5065df
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 3 09:09:06 2021 +0000

    Updating readme file for ubuntu20 version 20210531.0 (actions#3492)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 1691aca
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jun 3 07:46:46 2021 +0000

    Updating readme file for ubuntu18 version 20210531.0 (actions#3491)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit fa8469a
Author: Javier de la Morena <66418483+fdelamor@users.noreply.github.com>
Date:   Thu Jun 3 08:37:12 2021 +0200

    [ubuntu] Update ORAS URL (actions#3516)

commit 2823a3c
Author: Alena Sviridenko <alenasviridenko@github.com>
Date:   Wed Jun 2 13:16:51 2021 +0300

    Add macOS 11 onboarding guide (actions#3449)

    * Added guide on macOS 11 onboarding

    * Updated formatting and phrases

    * Updated onboarding page

    * Fixed wording

    * Fixed typos

    Co-authored-by: ahdbilal <55514721+ahdbilal@users.noreply.github.com>
    Co-authored-by: Maxim Lobanov <maxim-lobanov@github.com>

    * Updated wording and notes

    * Removed extra space

    * Fixed new lines

    * Fixed wording

    Co-authored-by: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>

    * Fixed note

    * Minor wording update

    Co-authored-by: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>

    * Fixed note

    * Fixed typo

    Co-authored-by: ahdbilal <55514721+ahdbilal@users.noreply.github.com>
    Co-authored-by: Maxim Lobanov <maxim-lobanov@github.com>
    Co-authored-by: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>

commit 4d72ed1
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Wed Jun 2 13:08:05 2021 +0300

    [Windows] Refactor Msys2 installation to use toolset part 1 (actions#3487)

    * Refactor Msys2 installation to use toolset

    * fix indent in the toolset files

    * Resolve nitpicks

    * Remove typo (extra $)

commit 62046bd
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Jun 2 10:04:46 2021 +0000

    Updating readme file for macOS-10.14 version 20210531.1 (actions#3495)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 2c6cc7a
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Tue Jun 1 18:31:35 2021 +0300

    [Ubuntu] Change rebar installation to use GitHub releases (actions#3486)

    * Change rebar installation to use gh releases

    * Add source $HELPER_SCRIPTS/install.sh

    * Add Erlang rebar3 to software readme

commit dbeeb4d
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue Jun 1 11:17:24 2021 +0000

    Updating readme file for macOS-11 version 20210531.1 (actions#3496)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>

commit 4983dee
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Mon May 31 18:33:17 2021 +0300

    [macos] stick to mongodb 4.4 (actions#3484)

commit 57a4965
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon May 31 14:09:51 2021 +0000

    Updating readme file for win16 version 20210525.0 (actions#3456)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 50d06a5
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon May 31 13:02:19 2021 +0000

    Updating readme file for win19 version 20210525.0 (actions#3452)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 5898c5e
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Sun May 30 00:39:27 2021 +0300

    Change RubyGems installation to use toolset (actions#3474)

commit cfbaf5f
Author: Alena Sviridenko <alenasviridenko@github.com>
Date:   Fri May 28 18:19:34 2021 +0300

    [macOS] removed GCC 8 (actions#3476)

commit 9aa17b4
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri May 28 08:04:19 2021 +0000

    Updating readme file for ubuntu20 version 20210524.1 (actions#3441)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit fe157d6
Author: Alena Sviridenko <alenasviridenko@github.com>
Date:   Fri May 28 10:45:39 2021 +0300

    [macOS] Add select-xamarin-sdk-v2.sh synopsis (actions#3473)

commit 6d4c863
Author: Jesse Chan <jc@linux.com>
Date:   Fri May 28 08:22:18 2021 +0100

    Revert "[ubuntu] Add GCC 11 (actions#3291)" (actions#3436)

    This reverts commit 3ebf601.

    Bug: actions#3376

commit 77daa9b
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 27 13:41:49 2021 +0000

    Updating readme file for macOS-10.15 version 20210525.2 (actions#3450)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 22053ef
Author: Aleksandr Chebotov <47745270+al-cheb@users.noreply.github.com>
Date:   Thu May 27 15:38:21 2021 +0300

    Add install Az module section (actions#3466)

    * Add install Az module section

    * add Az module name

commit 4341738
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 27 09:14:48 2021 +0000

    Updating readme file for ubuntu18 version 20210524.1 (actions#3442)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 4b3f574
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 27 09:07:26 2021 +0000

    Updating readme file for ubuntu16 version 20210524.1 (actions#3440)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit f7e0e8b
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu May 27 10:20:41 2021 +0300

    [Windows] Switch to use OData query instead of choco search for ghc installation (actions#3458)

    * Switch to use OData query instead of choco search

    * Simplify the logic

commit f9f82b7
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Tue May 25 20:33:58 2021 +0300

    Add previous version uninstallation (actions#3448)

commit 8e7629e
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Tue May 25 11:13:12 2021 +0300

    Change Add-AssertionOperator to Add-ShouldOperator (actions#3446)

commit 39e317a
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Mon May 24 21:38:12 2021 +0300

    [ubuntu] Change Add-AssertionOperator to Add-ShouldOperator (actions#3445)

commit 8dd6faf
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Mon May 24 21:37:55 2021 +0300

    [macOS] Change Add-AssertionOperator to Add-ShouldOperator (actions#3447)

commit d32753d
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Mon May 24 21:36:35 2021 +0300

    Temporary hardcoding fastlane 2.183.2 on macOS (actions#3444)

commit 7c673a2
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon May 24 12:07:10 2021 +0000

    Updating readme file for macOS-11 version 20210523.1 (actions#3443)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>

commit 75f9131
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri May 21 13:40:25 2021 +0000

    Updating readme file for ubuntu20 version 20210517.1 (actions#3400)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 589a58e
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Fri May 21 15:37:15 2021 +0300

    [Ubuntu] Change java-tools script to retrieve the latest major Gradle version (actions#3385)

    * Change java-tools script to retrieve the latest major gradle version

    * Change gradle installation to use manifest json. Use download_with_retries function

    * Move maven version to the toolset

commit 7ce21d8
Author: Sergey Dolin <v-sedoli@microsoft.com>
Date:   Fri May 21 12:34:41 2021 +0500

    [ubuntu] Rework Mono installation to avoid using apt repos (actions#3289)

    * Rework Mono installation to avoid using apt repos on Ubuntu images

    * Use rest of line to read full AptSourceRepository

commit 5e65aef
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri May 21 07:21:08 2021 +0000

    Updating readme file for ubuntu18 version 20210517.1 (actions#3399)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 926cba5
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri May 21 07:12:25 2021 +0000

    Updating readme file for ubuntu16 version 20210517.1 (actions#3407)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 1b483cc
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri May 21 00:14:35 2021 +0000

    Updating readme file for win19 version 20210516.0 (actions#3403)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit f2149f4
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 20 20:22:50 2021 +0000

    Updating readme file for win16 version 20210516.0 (actions#3404)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 3b59163
Author: Maxim Lobanov <maxim-lobanov@github.com>
Date:   Thu May 20 17:03:33 2021 +0300

    Update `macos-11.0` to `macos-11` in README (actions#3427)

    * Update README.md

    * Update README.md

commit c64a376
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 20 08:57:11 2021 +0000

    Updating readme file for macOS-10.15 version 20210516.1 (actions#3402)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 0bac903
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Wed May 19 19:45:09 2021 +0300

    Sort by version in advance (actions#3411)

commit c60f540
Author: Maxim Lobanov <maxim-lobanov@github.com>
Date:   Wed May 19 14:16:51 2021 +0300

    Rename 'macOS-11.0' to 'macOS-11' everywhere (actions#3417)

    * rename 'macos11.0' to 'macos-11'

    * fix nitpicks

    * resolve conflicts

commit 729b562
Author: daniv-msft <48293037+daniv-msft@users.noreply.github.com>
Date:   Wed May 19 00:14:16 2021 -0700

    Removing support of Azure Dev Spaces now that it's retired (actions#3413)

commit 85e107c
Author: Shivam Mathur <shivam_jpr@hotmail.com>
Date:   Tue May 18 13:12:14 2021 +0530

    [ubuntu] Add PHP extensions: imagick, pcov and sodium (actions#3405)

commit 952ee3e
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Mon May 17 21:55:32 2021 +0300

    [ubuntu] Move aws-sam-cli installation to the aws.sh script (actions#3401)

commit c4b6ffb
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon May 17 11:41:02 2021 +0000

    Updating readme file for macOS-11.0 version 20210516.1 (actions#3398)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>

commit 322aa89
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Mon May 17 00:54:28 2021 +0300

    [windows] Add msys libxml2 package installation (actions#3386)

commit 72813ad
Author: mikhailshaganov <81769678+mikhailshaganov@users.noreply.github.com>
Date:   Fri May 14 14:11:25 2021 +0300

    Rework apt-fast installation to get rid of apt repo (actions#3336)

    * select-xamarin-sdk-v2

    * Update select-xamarin-sdk-v2.sh

    * change warning message

    * check existed framework version

    * check framework version review points

    * Update apt.sh

    * Update SoftwareReport.Tools.psm1

    * remove a commented code

    * Fixed review points

    * return unattended-upgrades

    * Fixed a viewing version

    * add links for apt fast

    * apt fast version

    * apt-fast

    * final check version

    * add which apt-fast

commit a7c8d20
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Fri May 14 12:20:12 2021 +0300

    [windows] Add a test  to make sure version 9 is the default one (actions#3377)

commit 15a6106
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Fri May 14 11:25:07 2021 +0300

    [ubuntu] Remove clang 9 for ubuntu 20, set clang 11 as the default one (actions#3381)

commit ca0395c
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu May 13 21:12:54 2021 +0300

    Add dotnet nuget list source (actions#3373)

commit 0985500
Author: Ewout ter Hoeven <E.M.terHoeven@student.tudelft.nl>
Date:   Thu May 13 17:43:56 2021 +0200

    Add Clang 12 to Ubuntu 20.04 toolset (actions#3206)

    * Add Clang 12 to Ubuntu 20.04 toolset

    * Ubuntu: Install Clang-12 directly from LLVM

commit 75a4d89
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 13 14:59:08 2021 +0000

    Updating readme file for macOS-10.15 version 2021051.1 (actions#3360)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 0b1d415
Author: Aleksandr Chebotov <47745270+al-cheb@users.noreply.github.com>
Date:   Thu May 13 16:43:12 2021 +0300

    Remove Xamarin.IOS&Mac latest bundle (actions#3375)

commit 0cbfee2
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 13 13:37:30 2021 +0000

    Updating readme file for win19 version 20210509.1 (actions#3350)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit d694ead
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 13 13:36:40 2021 +0000

    Updating readme file for win16 version 20210509.1 (actions#3349)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 0f3523c
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu May 13 11:45:33 2021 +0300

    [macOS] Add GCC 11 (actions#3361)

    * Add gcc@11 to macOS images

    * Change tests and software report to use gcc toolset versions

    * Add natural sort

commit 3b20fa3
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 13 08:44:37 2021 +0000

    Ubuntu 1604 (2021051 update) (actions#3358)

    * Updating readme file for ubuntu16 version 2021051.0

    * Update Ubuntu1604-README.md

    * Update Ubuntu1604-README.md

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Maxim Lobanov <maxim-lobanov@github.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit f20496e
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 13 08:41:46 2021 +0000

    Ubuntu 2004 (2021051 update) (actions#3356)

    * Updating readme file for ubuntu20 version 2021051.0

    * Update Ubuntu2004-README.md

    * Update Ubuntu2004-README.md

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Maxim Lobanov <maxim-lobanov@github.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 0409144
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 13 08:38:04 2021 +0000

    Ubuntu 1804 (2021051 update) (actions#3357)

    * Updating readme file for ubuntu18 version 2021051.0

    * Update Ubuntu1804-README.md

    * Update Ubuntu1804-README.md

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Maxim Lobanov <maxim-lobanov@github.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 769423b
Author: Aleksandr Chebotov <47745270+al-cheb@users.noreply.github.com>
Date:   Thu May 13 10:19:34 2021 +0300

    Add build_resource_group_name packer option (actions#3369)

commit 68aa36b
Author: Alena Sviridenko <alenasviridenko@github.com>
Date:   Wed May 12 14:22:34 2021 +0300

    Added workflow step to check for spammy issue (actions#3370)

commit 0871444
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Wed May 12 11:24:18 2021 +0300

    [ubuntu] Remove pip symlink creation (actions#3366)

commit d70d9f2
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Tue May 11 19:07:51 2021 +0300

    Add a warning note about post-deployment scripts (actions#3364)

commit a16083d
Author: AlenaSviridenko <alenasviridenko@github.com>
Date:   Tue May 11 18:01:50 2021 +0300

    Revert "test body input"

    This reverts commit 23ed477.

commit 23ed477
Author: AlenaSviridenko <alenasviridenko@github.com>
Date:   Tue May 11 17:58:25 2021 +0300

    test body input

commit ae3284d
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue May 11 09:48:58 2021 +0000

    Updating readme file for macOS-11.0 version 2021051.1 (actions#3355)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit dc6dc83
Author: Dibir Magomedsaygitov <61747324+dibir-magomedsaygitov@users.noreply.github.com>
Date:   Tue May 11 10:15:27 2021 +0300

    fix minikube version output (actions#3352)

commit a5ee51f
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Fri May 7 16:35:34 2021 +0300

    Revert "[ubuntu] Rework php installation (actions#3272)" (actions#3340)

    This reverts commit b1f202e.

commit 52d48bc
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri May 7 13:27:14 2021 +0000

    Updating readme file for macOS-10.15 version 20210503.2 (actions#3301)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 158ed05
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 6 15:03:30 2021 +0000

    Updating readme file for ubuntu20 version 20210504.1 (actions#3312)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 028fa5d
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu May 6 16:38:58 2021 +0300

    [macOS] Add Xamarin ios 14.16 and mac 7.10 (actions#3329)

commit a583688
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 6 10:28:54 2021 +0000

    Updating readme file for ubuntu16 version 20210504.1 (actions#3305)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 8f215a5
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 6 10:24:38 2021 +0000

    Updating readme file for ubuntu18 version 20210504.1 (actions#3304)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit 9ebab48
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 6 09:41:52 2021 +0000

    Updating readme file for macOS-10.14 version 20210501.1 (actions#3300)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit a5fca05
Author: Aleksandr Chebotov <47745270+al-cheb@users.noreply.github.com>
Date:   Thu May 6 12:10:58 2021 +0300

    [Ubuntu] Set DefaultLimitSTACK=16384 limit (actions#3328)

    * Set DefaultLimitSTACK=16384 limit

    * Set DefaultLimitSTACK 16MB

commit 5abc43a
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu May 6 11:35:37 2021 +0300

    [windows] Add cmake 3.18.1 for Android to toolset files (actions#3324)

commit 9740348
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu May 6 11:35:21 2021 +0300

    [macos] Add cmake 3.18.1 to toolsets (actions#3323)

commit 96e0e6f
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu May 6 11:35:05 2021 +0300

    [Ubuntu] Add Cmake 3.18.1 to toolset files (actions#3322)

commit 3ebf601
Author: Ewout ter Hoeven <E.M.terHoeven@student.tudelft.nl>
Date:   Thu May 6 09:31:09 2021 +0200

    [ubuntu] Add GCC 11 (actions#3291)

    * Ubuntu Bionic/Focal: Add GCC 11

    Add GCC 11 to the Ubuntu 18.04 Bionic and 20.04 Focal toolsets.

    * Ubuntu Bionic/Focal: Add GFortran 11

    Add GFortran 11 to the Ubuntu 18.04 Bionic and 20.04 Focal toolsets.

commit 366f1b0
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Thu May 6 10:04:22 2021 +0300

    [Ubuntu] Avoid updating gems (actions#3320)

commit 5475c40
Author: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>
Date:   Wed May 5 18:23:21 2021 +0300

    [macOS] Add swift program to save certificate (actions#3311)

commit adf1f3d
Author: Sergey Dolin <v-sedoli@microsoft.com>
Date:   Wed May 5 18:39:04 2021 +0500

    [ubuntu] Remove apt sources used to install azure-cli only (actions#3274)

commit 0cca9be
Author: Howard Jones <howie@thingy.com>
Date:   Wed May 5 10:04:44 2021 +0100

    Make CreateAzureVMFromPackerTemplate friendlier (actions#3209)

    * Don't assume JSON output

    Specify JSON output, since it's required. The default can be changed.

    * Make actions easier to track

    To make cleanup easier, use the same GUID for all components and report at the end on what was created.

commit f84d55a
Author: Darii Nurgaleev <50947177+Darleev@users.noreply.github.com>
Date:   Wed May 5 15:50:15 2021 +0700

    Rework Kubernetes installation to avoid using apt repos on Ubuntu images (actions#3309)

    * github_feed_token removal

    * remove file

    * GithubFeedToken remove from other files

    * remove boost from docs

    * Kubectl installation without additional repo

    * add latest kubectl version variable

commit 1532432
Author: Leonid Lapshin <leonidlapshin@github.com>
Date:   Tue May 4 21:00:16 2021 +0300

    Fix fastlane installation for Ubuntu 20 (actions#3308)

    * tmp fix for Ubuntu 20

    * removed unnecessary line break

    Co-authored-by: Leonid Lapshin <originalnoe-nazvanie@yandex.ru>

commit d441e5b
Author: Alena Sviridenko <alenasviridenko@github.com>
Date:   Tue May 4 18:10:24 2021 +0300

    Removed Ubuntu 16.04 from README.md (actions#3302)

commit 50f0234
Author: mikhailshaganov <81769678+mikhailshaganov@users.noreply.github.com>
Date:   Tue May 4 17:29:41 2021 +0300

    select-xamarin-sdk-v2 (actions#3290)

    * select-xamarin-sdk-v2

    * Update select-xamarin-sdk-v2.sh

    * change warning message

    * check existed framework version

    * check framework version review points

commit 365e5a0
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue May 4 09:31:01 2021 +0000

    Updating readme file for macOS-11.0 version 20210503.1 (actions#3299)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>

commit f109d39
Author: Daniel <56939361+seqdan@users.noreply.github.com>
Date:   Tue May 4 20:39:55 2021 +1200

    Securing packer builds via allowed_inbound_ip_addresses (actions#3193)

    * Trying to handover additional parameters

    * Make restriction to agent ip configurable

    * Added additional parameter to all other packer files

    * Added note about new parameter's incompatibility with other parameters to command line help

    * Added line break for better readability

    Co-authored-by: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>

    Co-authored-by: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com>

commit c2a2904
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Apr 29 14:50:39 2021 +0000

    Updating readme file for ubuntu16 version 20210425.1 (actions#3262)

    Co-authored-by: Image generation service account <no-reply@microsoft.com>
    Co-authored-by: Actions service account <no-reply@github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants