test
This commit is contained in:
parent
c0dc94844a
commit
658b65adf1
2 changed files with 1 additions and 115 deletions
|
@ -44,7 +44,7 @@ jobs:
|
|||
run: sudo apt update && sudo apt -y upgrade && sudo apt -y install mysql-client
|
||||
|
||||
- name: Setup Test Environment
|
||||
run: bash bin/install-wp-tests.sh wordpress_test root root mysql latest
|
||||
run: bash bin/install-wp-tests.sh wordpress_test root root localhost latest
|
||||
|
||||
- name: Unit Testing
|
||||
run: ./vendor/bin/phpunit
|
||||
|
|
|
@ -1,114 +0,0 @@
|
|||
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 5.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
|
Loading…
Reference in a new issue