From 437f1f6a3b95d248a503e2186e8b1693edca9327 Mon Sep 17 00:00:00 2001 From: Adam Oswald Date: Wed, 7 Feb 2024 14:25:31 -0500 Subject: [PATCH] Delete .github/workflows/azure-pipelines-7.yml --- .github/workflows/azure-pipelines-7.yml | 26 ------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/azure-pipelines-7.yml 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'