Skip to content

Commit eed2beb

Browse files
committed
added circle/badge
1 parent edec3b1 commit eed2beb

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Build Status](https://circleci.com/gh/cloudify-examples/simple-python-webserver-blueprint.svg?style=shield&circle-token=:circle-token)](https://circleci.com/gh/cloudify-examples/simple-python-webserver-blueprint)
2+
13
# simple-python-webserver-blueprint
24

35
This is the blueprint example used for Cloudify's Intro section in our [Docs](http://docs.getcloudify.org).

circle.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
machine:
2+
python:
3+
version: 2.7.9
4+
5+
checkout:
6+
post:
7+
- >
8+
if [ -n "$CI_PULL_REQUEST" ]; then
9+
PR_ID=${CI_PULL_REQUEST##*/}
10+
git fetch origin +refs/pull/$PR_ID/merge:
11+
git checkout -qf FETCH_HEAD
12+
fi
13+
14+
dependencies:
15+
override:
16+
- pip install https://github.com/cloudify-cosmo/cloudify-rest-client/archive/master.zip
17+
- pip install https://github.com/cloudify-cosmo/cloudify-dsl-parser/archive/master.zip
18+
- pip install https://github.com/cloudify-cosmo/cloudify-plugins-common/archive/master.zip
19+
- pip install https://github.com/cloudify-cosmo/cloudify-script-plugin/archive/1.4.zip
20+
- pip install https://github.com/cloudify-cosmo/cloudify-cli/archive/master.zip
21+
22+
test:
23+
override:
24+
- cfy init
25+
- cfy blueprints validate blueprint.yaml
26+
- cfy install blueprint.yaml
27+
- cfy uninstall
28+
29+
deployment:
30+
release:
31+
tag: /.*/
32+
commands:
33+
- (true)

0 commit comments

Comments
 (0)