Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Camo Image Proxy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WP Plugins
Camo Image Proxy
Commits
3ef44a4d
Commit
3ef44a4d
authored
6 years ago
by
Erick Hitter
Browse files
Options
Downloads
Patches
Plain Diff
Add tests using WP-CLI scaffold
parent
7721e2cf
No related branches found
No related tags found
1 merge request
!1
Add GitLab CI
Pipeline
#90
failed
6 years ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+64
-0
64 additions, 0 deletions
.gitlab-ci.yml
.travis.yml
+2
-2
2 additions, 2 deletions
.travis.yml
bin/install-wp-tests.sh
+1
-1
1 addition, 1 deletion
bin/install-wp-tests.sh
with
67 additions
and
3 deletions
.gitlab-ci.yml
0 → 100644
+
64
−
0
View file @
3ef44a4d
variables
:
# Configure mysql service (https://hub.docker.com/_/mysql/)
MYSQL_DATABASE
:
wordpress_tests
MYSQL_ROOT_PASSWORD
:
mysql
before_script
:
# Install dependencies
# update the docker
-
apt-get clean
-
apt-get -yqq update
# instll the required packages for the running CI tests
-
apt-get -yqqf install zip unzip subversion mysql-client libmysqlclient-dev --fix-missing
# PHP extensions
-
docker-php-ext-enable mbstring mcrypt mysqli pdo_mysql intl gd zip bz2
# Set up WordPress tests
-
bash bin/install-wp-tests.sh wordpress_tests root mysql mysql latest
true
# Install PHPCS and WPCS
-
composer global require automattic/vipwpcs
-
phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs,$HOME/.composer/vendor/automattic/vipwpcs
PHPunit:PHP5.3:MySQL
:
image
:
tetraweb/php:5.3
services
:
-
mysql:5.6
script
:
-
phpcs
-
phpunit
PHPunit:PHP5.6:MySQL
:
image
:
tetraweb/php:5.6
services
:
-
mysql:5.6
script
:
-
phpcs
-
phpunit
PHPunit:PHP7.0:MySQL
:
image
:
tetraweb/php:7.0
services
:
-
mysql:5.6
script
:
-
phpcs
-
phpunit
PHPunit:PHP7.1:MySQL
:
image
:
tetraweb/php:7.1
services
:
-
mysql:5.6
script
:
-
phpcs
-
phpunit
PHPunit:PHP7.2:MySQL
:
image
:
tetraweb/php:7.2
services
:
-
mysql:5.6
script
:
-
phpcs
-
phpunit
This diff is collapsed.
Click to expand it.
.travis.yml
+
2
−
2
View file @
3ef44a4d
...
...
@@ -46,8 +46,8 @@ before_script:
fi
-
|
if [[ "$WP_TRAVISCI" == "phpcs" ]] ; then
composer global require
wp-coding-standards/
wpcs
phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs
composer global require
automattic/vip
wpcs
phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs
,$HOME/.composer/vendor/automattic/vipwpcs
fi
script
:
...
...
This diff is collapsed.
Click to expand it.
bin/install-wp-tests.sh
+
1
−
1
View file @
3ef44a4d
...
...
@@ -95,7 +95,7 @@ install_wp() {
install_test_suite
()
{
# portable in-place argument for both GNU sed and Mac OSX sed
if
[[
$(
uname
-s
)
==
'Darwin'
]]
;
then
local
ioption
=
'-i
.bak'
local
ioption
=
'-i.bak'
else
local
ioption
=
'-i'
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment