Skip to content

Commit a337d6a

Browse files
Merge pull request #5 from runcommand/use-circle
Use Circle instead of Travis for CI
2 parents 3c9dfb6 + 7685c3b commit a337d6a

File tree

3 files changed

+18
-33
lines changed

3 files changed

+18
-33
lines changed

.travis.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ runcommand/dist-archive
33

44
Create a distribution .zip or .tar.gz based on a plugin or theme's .distignore file.
55

6-
[![Build Status](https://travis-ci.org/runcommand/dist-archive.svg?branch=master)](https://travis-ci.org/runcommand/dist-archive)
6+
[![CircleCI](https://circleci.com/gh/runcommand/dist-archive/tree/master.svg?style=svg)](https://circleci.com/gh/runcommand/dist-archive/tree/master)
77

88
Quick links: [Using](#using) | [Installing](#installing) | [Contributing](#contributing)
99

1010
## Using
1111

12-
1312
~~~
1413
wp dist-archive <path> [--format=<format>]
1514
~~~
@@ -46,8 +45,6 @@ script in each project.
4645
- targz
4746
---
4847

49-
50-
5148
## Installing
5249

5350
Installing this package requires WP-CLI v0.23.0 or greater. Update to the latest stable release with `wp cli update`.
@@ -84,3 +81,5 @@ Once you've decided to commit the time to seeing your pull request through, plea
8481
2. Submit your pull request early for feedback.
8582
3. Include functional tests with your changes. [Read the WP-CLI documentation](https://wp-cli.org/docs/pull-requests/#functional-tests) for an introduction.
8683
4. Follow the [WordPress Coding Standards](http://make.wordpress.org/core/handbook/coding-standards/).
84+
85+
*This README.md is generated dynamically from the project's codebase using `wp scaffold package-readme` ([doc](https://github.com/wp-cli/scaffold-package-command#wp-scaffold-package-readme)). To suggest changes, please submit a pull request against the corresponding part of the codebase.*

circle.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
machine:
2+
php:
3+
version: 5.6.22
4+
environment:
5+
WP_CLI_BIN_DIR: /tmp/wp-cli-phar
6+
7+
dependencies:
8+
cache_directories:
9+
- ~/.composer/cache
10+
11+
test:
12+
pre:
13+
- bash bin/install-package-tests.sh
14+
override:
15+
- ./vendor/bin/behat --strict

0 commit comments

Comments
 (0)