diff --git a/.github/workflows/azure-pipelines-7.yml b/.github/workflows/azure-pipelines-7.yml deleted file mode 100644 index 663d7c58..00000000 --- a/.github/workflows/azure-pipelines-7.yml +++ /dev/null @@ -1,26 +0,0 @@ -# PHP -# Test and package your PHP project. -# Add steps that run tests, save build artifacts, deploy, and more: -# https://docs.microsoft.com/azure/devops/pipelines/languages/php - -trigger: -- main - -pool: - vmImage: ubuntu-latest - -variables: - phpVersion: 7.2 - -steps: -- script: | - sudo update-alternatives --set php /usr/bin/php$(phpVersion) - sudo update-alternatives --set phar /usr/bin/phar$(phpVersion) - sudo update-alternatives --set phpdbg /usr/bin/phpdbg$(phpVersion) - sudo update-alternatives --set php-cgi /usr/bin/php-cgi$(phpVersion) - sudo update-alternatives --set phar.phar /usr/bin/phar.phar$(phpVersion) - php -version - displayName: 'Use PHP version $(phpVersion)' - -- script: composer install --no-interaction --prefer-dist - displayName: 'composer install'