Created
February 15, 2020 12:20
-
-
Save allebb/2ece4acf3b3fb2df540c967eb14fd9b6 to your computer and use it in GitHub Desktop.
A Jenkinsfile demonstating a build pipeline in Jenkins using Docker Agents for multiple PHP version testing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
stages { | |
stage('Checkout') { | |
steps { | |
git(url: 'https://github.com/allebb/jenkdock-demo.git', branch: 'master') | |
} | |
} | |
stage('Test') { | |
parallel { | |
stage('PHP 5.6') { | |
agent { | |
docker { | |
image 'allebb/phptestrunner-56:latest' | |
args '-u root:sudo' | |
} | |
} | |
steps { | |
echo 'Running PHP 5.6 tests...' | |
sh 'php -v' | |
echo 'Installing Composer' | |
sh 'curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer' | |
echo 'Installing project composer dependencies...' | |
sh 'cd $WORKSPACE && composer install --no-progress' | |
echo 'Running PHPUnit tests...' | |
sh 'php $WORKSPACE/vendor/bin/phpunit --coverage-html $WORKSPACE/report/clover --coverage-clover $WORKSPACE/report/clover.xml --log-junit $WORKSPACE/report/junit.xml' | |
sh 'chmod -R a+w $PWD && chmod -R a+w $WORKSPACE' | |
junit 'report/*.xml' | |
} | |
} | |
stage('PHP 7.3') { | |
agent { | |
docker { | |
image 'allebb/phptestrunner-73:latest' | |
args '-u root:sudo' | |
} | |
} | |
steps { | |
echo 'Running PHP 7.3 tests...' | |
sh 'php -v' | |
echo 'Installing Composer' | |
sh 'curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer' | |
echo 'Installing project composer dependencies...' | |
sh 'cd $WORKSPACE && composer install --no-progress' | |
echo 'Running PHPUnit tests...' | |
sh 'php $WORKSPACE/vendor/bin/phpunit --coverage-html $WORKSPACE/report/clover --coverage-clover $WORKSPACE/report/clover.xml --log-junit $WORKSPACE/report/junit.xml' | |
sh 'chmod -R a+w $PWD && chmod -R a+w $WORKSPACE' | |
junit 'report/*.xml' | |
} | |
} | |
stage('PHP 7.4') { | |
agent { | |
docker { | |
image 'allebb/phptestrunner-74:latest' | |
args '-u root:sudo' | |
} | |
} | |
steps { | |
echo 'Running PHP 7.4 tests...' | |
sh 'php -v' | |
echo 'Installing Composer' | |
sh 'curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer' | |
echo 'Installing project composer dependencies...' | |
sh 'cd $WORKSPACE && composer install --no-progress' | |
echo 'Running PHPUnit tests...' | |
sh 'php $WORKSPACE/vendor/bin/phpunit --coverage-html $WORKSPACE/report/clover --coverage-clover $WORKSPACE/report/clover.xml --log-junit $WORKSPACE/report/junit.xml' | |
sh 'chmod -R a+w $PWD && chmod -R a+w $WORKSPACE' | |
junit 'report/*.xml' | |
} | |
} | |
} | |
} | |
stage('Release') { | |
steps { | |
echo 'Ready to release etc.' | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment