forked from cloudify-examples/drupal-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
34 lines (30 loc) · 1.02 KB
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
machine:
python:
version: 2.7.9
checkout:
post:
- >
if [ -n "$CI_PULL_REQUEST" ]; then
PR_ID=${CI_PULL_REQUEST##*/}
git fetch origin +refs/pull/$PR_ID/merge:
git checkout -qf FETCH_HEAD
fi
dependencies:
override:
- pip install https://github.com/cloudify-cosmo/cloudify-rest-client/archive/master.zip
- pip install https://github.com/cloudify-cosmo/cloudify-dsl-parser/archive/master.zip
- pip install https://github.com/cloudify-cosmo/cloudify-plugins-common/archive/master.zip
- pip install https://github.com/cloudify-cosmo/cloudify-script-plugin/archive/1.4.zip
- pip install https://github.com/cloudify-cosmo/cloudify-cli/archive/master.zip
test:
override:
- cfy init
- cfy blueprints validate aws-blueprint.yaml
- cfy blueprints validate azure-blueprint.yaml
- cfy blueprints validate openstack-blueprint.yaml
- cfy blueprints validate os_vs_drupalAndMemcached-blueprint.yaml
deployment:
release:
tag: /.*/
commands:
- (true)