File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
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
+
1
3
# simple-python-webserver-blueprint
2
4
3
5
This is the blueprint example used for Cloudify's Intro section in our [ Docs] ( http://docs.getcloudify.org ) .
Original file line number Diff line number Diff line change
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)
You can’t perform that action at this time.
0 commit comments