-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcircle.yml
More file actions
35 lines (31 loc) · 1.08 KB
/
circle.yml
File metadata and controls
35 lines (31 loc) · 1.08 KB
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
35
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/master.zip
# - pip install https://github.com/cloudify-cosmo/cloudify-cli/archive/master.zip
test:
override: []
# - cfy init
# - cfy blueprints validate openstack-blueprint.yaml
# - cfy blueprints validate aws-blueprint.yaml
# - cfy blueprints validate azure-blueprint.yaml
# - cfy blueprints validate vcloud-blueprint.yaml
# - cfy blueprints validate vsphere-blueprint.yaml
deployment:
release:
tag: /.*/
commands:
- (true)