From c5f328c54685ce4d58f3d49f10bbb264735e6a49 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Mon, 13 Sep 2021 18:29:59 +0200 Subject: [PATCH] MDL-72399 GHA: Go back to use upstream igbinary extension With igbinary >=3.2.6 already built, see https://launchpad.net/~ondrej/+archive/ubuntu/php/+packages?field.name_filter=igbinary&field.status_filter=published We can revert the temporal workaround applied few weeks ago (that sometimes is failing). So this is a simple revert of the original commit. Revert "MDL-72312 GHA: Force use of igbinary working version" This reverts commit 814c80da137c377a45acb643ccd7e237009a69c2. --- .github/workflows/push.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 697ceb6d20a..52e9bf70a41 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -55,16 +55,9 @@ jobs: include: - os: ubuntu-18.04 php: 7.2 - # Need to disable both redis and memcached (both are optional) in order to keep igbinary installed. - # (there are dependencies that become broken if we just switch the igbinary version). - # Need to do this for php 7.2 because of a bug with current default igbinary - # versions used by GHA being >= 3.2.2 and <= 3.2.4 (buggy ones). - # TODO: MDL-72399 - Revert this patch once igbinary 3.2.5 or up is the default @ GHA. - extensions: :redis, :memcached, igbinary-3.2.6 db: mysqli - os: ubuntu-18.04 php: 7.4 - extensions: db: pgsql steps: @@ -95,7 +88,6 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - extensions: ${{ matrix.extensions }} coverage: none - name: Checking out code from ${{ env.GITHUB_REF_SLUG }}