From a5b5c1dc7f4dad76b6300594ae074ed207be56a6 Mon Sep 17 00:00:00 2001 From: devopsmeet <54673224+devopsmeet@users.noreply.github.com> Date: Mon, 16 Sep 2019 11:49:52 +0530 Subject: [PATCH] Azure-Php [skip ci] --- azure-pipelines.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..7972374 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,26 @@ +# 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: +- master + +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'