我的项目是一个 Wordpress 插件。我正在使用circleci进行持续集成。
我正在尝试设置我的 circle.yml 文件,以便我可以运行我的 phpunit 测试。我正在按照这个示例在 CI 环境中安装 Wordpress 等。这对我不起作用:
## Customize test commands
test:
pre:
# download wordpress for wp-cli to use
- curl -s https://wordpress.org/latest.tar.gz > /tmp/wordpress.tar.gz
- tar --strip-components=1 -zxmf /tmp/wordpress.tar.gz -C /tmp/wordpress
- curl -s https://raw.github.com/markoheijnen/wp-mysqli/master/db.php > /tmp/wordpress/wp-content/db.php
# Create DB. No password is required for the MySQL user `ubuntu`
- mysql -u ubuntu -e "create database wordpress"
# Download WordPress into `wordpress` directory
- ./vendor/wp-cli/wp-cli/bin/wp core download --allow-root --path=wordpress
# Generate `wp-config.php` file
- ./vendor/wp-cli/wp-cli/bin/wp core config --allow-root --dbname=wordpress --dbuser=ubuntu --dbhost=localhost --path=wordpress
# Install WordPress
- ./vendor/wp-cli/wp-cli/bin/wp core install --allow-root --admin_name=admin --admin_password=admin --admin_email=admin@example.com --url=http://wp-github-pipeline.dev:8080 --title=WordPress --path=wordpress
# Clone Pipeline plugin from GitHub
- git clone git@github.com:TransitScreen/wp-github-pipeline.git wordpress/wp-content/plugins/wp-github-pipeline
#install dependencies
- cd wordpress/wp-content/plugins/wp-github-pipeline
- composer install
# And use WP-CLI to activate it
# ERROR HAPPENS HERE!!
- ./vendor/wp-cli/wp-cli/bin/wp plugin activate wp-github-pipeline --path=wordpress
override:
- phpunit # use PHPunit for testing
这是上面评论中提到的错误:
PHP Fatal error: Cannot redeclare cli\render() (previously declared in phar:///home/ubuntu/wp-github-pipeline/wp-cli.phar/vendor/wp-cli/php-cli-tools/lib/cli/cli.php:26) in /home/ubuntu/wp-github-pipeline/vendor/wp-cli/php-cli-tools/lib/cli/cli.php on line 28
Fatal error: Cannot redeclare cli\render() (previously declared in phar:///home/ubuntu/wp-github-pipeline/wp-cli.phar/vendor/wp-cli/php-cli-tools/lib/cli/cli.php:26) in /home/ubuntu/wp-github-pipeline/vendor/wp-cli/php-cli-tools/lib/cli/cli.php on line 28 ./wp-cli.phar plugin activate wp-github-pipeline --path=wordpress r