PHP Classes

File: .circleci/config.yml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   .circleci/config.yml   Download  
File: .circleci/config.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Download Installed Plugin
Download a WordPress plugin as a ZIP archive
Author: By
Last change:
Date: Yesterday
Size: 3,259 bytes
 

Contents

Class file image Download
workflows: version: 2 main: jobs: - php56-build - php70-build - php71-build - php72-build - php73-build - php74-build version: 2 job-references: mysql_image: &mysql_image circleci/mysql:5.6 setup_environment: &setup_environment name: "Setup Environment Variables" command: | echo "export PATH=$HOME/.composer/vendor/bin:$PATH" >> $BASH_ENV source /home/circleci/.bashrc install_dependencies: &install_dependencies name: "Install Dependencies" command: | sudo apt-get update && sudo apt-get install subversion sudo -E docker-php-ext-install mysqli sudo sh -c "printf '\ndeb http://ftp.us.debian.org/debian sid main\n' >> /etc/apt/sources.list" sudo apt-get update && sudo apt-get install mysql-client-5.7 php_job: &php_job environment: - WP_TESTS_DIR: "/tmp/wordpress-tests-lib" - WP_CORE_DIR: "/tmp/wordpress/" steps: - checkout - run: *setup_environment - run: *install_dependencies - run: name: "Run Tests" command: | composer global require "phpunit/phpunit=5.7.*" composer global require wp-coding-standards/wpcs phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs phpcs rm -rf $WP_TESTS_DIR $WP_CORE_DIR bash bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 latest phpunit WP_MULTISITE=1 phpunit jobs: php56-build: <<: *php_job docker: - image: circleci/php:5.6 - image: *mysql_image steps: - checkout - run: *setup_environment - run: *install_dependencies - run: name: "Run Tests" command: | composer global require "phpunit/phpunit=5.7.*" composer global require wp-coding-standards/wpcs phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs phpcs SKIP_DB_CREATE=false rm -rf $WP_TESTS_DIR $WP_CORE_DIR bash bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 4.5 $SKIP_DB_CREATE phpunit WP_MULTISITE=1 phpunit SKIP_DB_CREATE=true rm -rf $WP_TESTS_DIR $WP_CORE_DIR bash bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 latest $SKIP_DB_CREATE phpunit WP_MULTISITE=1 phpunit SKIP_DB_CREATE=true rm -rf $WP_TESTS_DIR $WP_CORE_DIR bash bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 trunk $SKIP_DB_CREATE phpunit WP_MULTISITE=1 phpunit SKIP_DB_CREATE=true php70-build: <<: *php_job docker: - image: circleci/php:7.0 - image: *mysql_image php71-build: <<: *php_job docker: - image: circleci/php:7.1 - image: *mysql_image php72-build: <<: *php_job docker: - image: circleci/php:7.2 - image: *mysql_image php73-build: <<: *php_job docker: - image: circleci/php:7.3 - image: *mysql_image php74-build: <<: *php_job docker: - image: circleci/php:7.4 - image: *mysql_image