Download the PHP package typisttech/travis-nginx-wordpress without Composer
On this page you can find all versions of the php package typisttech/travis-nginx-wordpress. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download typisttech/travis-nginx-wordpress
More information about typisttech/travis-nginx-wordpress
Files in typisttech/travis-nginx-wordpress
Package travis-nginx-wordpress
Short Description A basic template for Nginx and WordPress running on Travis CI's container based infrastructure.
License MIT
Homepage https://www.typist.tech/projects/travis-nginx-wordpress
Informations about the package travis-nginx-wordpress
Travis CI Nginx WordPress Test
A basic template for Nginx and WordPress running on Travis CI's container based infrastructure.
- What is the purpose of this repo?
- Installation and Usage
- Customization
- How does it works?
- WordPress
- Nginx
- Codeception
- Codecov.io
- Scrutinizer CI
- Known Issues
- See Also
- Real life examples that use this package
- Support!
- Donate via PayPal *
- Why don't you hire me?
- Want to help in other way? Want to be a sponsor?
- Change Log
- Credit
- License
What is the purpose of this repo?
Do you need to run some automated tests that rely on Nginx on Travis CI? Do you want those tests to run on the Docker container-based infrastructure? Are you pulling your hair out trying to get this all to work? Then this repo is for you.
Travis CI does not come with Nginx pre-installed so the install needs to be scripted. Since Travis CI's container-based infrastructure doesn't allow sudo privileges this installation is non-trivial. Hopefully, by providing this repo I can save someone some hassle trying to get Nginx set up for their project.
Installation and Usage
The script is tailored on Travis CI PHP build images and might not work in every situation. Below is an basic example of .travis.yml
:
And, this is an basic example of codeception.dist.yml
which compatible with the above Travis settings:
Customization
The default scripts install WordPress core on /tmp/wordpress
and serve it at http://wp.dev:8080
.
You can customize the build via environment variables. Check the variables of the functions in the bin director for available configuration.
How does it works?
All of the setup scripts are located in the tpl directory. They are short and basic so it should be relatively easy to follow. The repository defines 6 setup scripts:
tnw-install-wordpress
- Install WordPress
tnw-install-nginx
- Setup Nginx to serve a website from a folder on a local domain
tnw-prepare-codeception
- Install PHP_CodeSniffer and WordPress coding standard
tnw-upload-coverage-to-codecov
- Upload test coverage to codecov.io
tnw-upload-coverage-to-scrutinizer
- Upload test coverage to Scrutinizer
WordPress
The WordPress installation is done through the tnw-install-wordpress bash script. The basic install process goes as follows:
- Create the WordPress database.
- Download WordPress core.
- Generate the
wp-config.php
file.- Note that
define( 'AUTOMATIC_UPDATER_DISABLED', true );
is added.
- Note that
- Install the WordPress database.
Nginx
The Nginx installation is done through the tnw-install-nginx bash script. The basic install process goes as follows:
- Install Nginx using the apt addon via entries in the .travis.yml file.
- Copy the configuration templates to a new directory while replacing placeholders with environment variables.
- Start php-fpm and Nginx with our custom configuration file instead of the default.
Codeception
The Codeception preparation is done through the tnw-prepare-codeception bash script. The basic install process goes as follows:
- Replace
phantomjs
path to the TravisCI one incodeception.yml
andcodeception.dist.yml
. - Create an extra database for testing.
- Import database dump to WordPress.
- Upgrade the WordPress database.
- Export the WordPress database dump for later use.
Note: The phantomjs
path must be wrapped in single quotes.
Codecov.io
The Codecov.io test coverage uploading is done through the tnw-upload-coverage-to-codecov bash script. The basic install process goes as follows:
- Run the codecov-bash script.
Scrutinizer CI
The Scrutinizer CI test coverage uploading is done through the tnw-upload-coverage-to-scrutinizer bash script. The basic install process goes as follows:
- Download ocular.
- Upload the test coverage file to Scrutinizer CI.
Known Issues
- Nginx gives alert messages during start which is safe to ignore.
See Also
- Running Nginx as a Non-Root User
- Travis CI Nginx Test (the original repo)
- Travis CI Apache Virtualhost configuration script
Real life examples that use this package
Here you go:
Add your own here
Support!
Donate via PayPal 
Love Travis CI Nginx WordPress Test? Help me maintain Travis CI Nginx WordPress Test, a donation here can help with it.
Why don't you hire me?
Ready to take freelance WordPress jobs. Contact me via the contact form here or, via email [email protected]
Want to help in other way? Want to be a sponsor?
Contact: Tang Rufus
Change Log
See CHANGELOG.md.
Credit
Travis CI Nginx WordPress Test is originally forked from the Travis CI Nginx Test project. Special thanks to its author Todd Burry.
License
Travis CI Nginx WordPress Test is released under the MIT License.