Skip to content
This repository was archived by the owner on Aug 26, 2020. It is now read-only.

Commit 768bb6c

Browse files
committed
Merge pull request #19 from cloudify-cosmo/circle-update
update circle.yml to deal with PR and add circle icon to README.md file
2 parents dd6115f + f139ca0 commit 768bb6c

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Cloudify Puppet Plugin
22

3+
* Master [![Circle CI](https://circleci.com/gh/cloudify-cosmo/cloudify-puppet-plugin/tree/master.svg?style=shield)](https://circleci.com/gh/cloudify-cosmo/cloudify-puppet-plugin/tree/master)
34
* Master Branch [![Build Status](https://travis-ci.org/cloudify-cosmo/cloudify-puppet-plugin.svg?branch=master)](https://travis-ci.org/cloudify-cosmo/cloudify-puppet-plugin)
45

56
Cloudify plugin for the [Puppet](http://puppetlabs.com/).

circle.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1-
dependencies:
1+
checkout:
22
post:
3+
- >
4+
if [ -n "$CI_PULL_REQUEST" ]; then
5+
PR_ID=${CI_PULL_REQUEST##*/}
6+
git fetch origin +refs/pull/$PR_ID/merge:
7+
git checkout -qf FETCH_HEAD
8+
fi
9+
10+
dependencies:
11+
pre:
312
- pyenv local 2.7.9
413
override:
514
- pip install tox
@@ -9,4 +18,4 @@ test:
918
- tox -e docs
1019
- tox -e flake8
1120
- tox -e py27
12-
#
21+

0 commit comments

Comments
 (0)