forked from EarthmanT/cloudify-nodecellar-docker-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yaml
28 lines (24 loc) · 895 Bytes
/
.travis.yaml
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
language: python
sudo: false
python:
- 2.7
install:
- pip install https://github.com/cloudify-cosmo/cloudify-rest-client/archive/3.4m5.zip
- pip install https://github.com/cloudify-cosmo/cloudify-dsl-parser/archive/3.4m5.zip
- pip install https://github.com/cloudify-cosmo/cloudify-plugins-common/archive/3.4m5.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/3.4m5.zip
- pip install flake8
env:
- OP="validate-blueprints"
script:
- |
set -e
if [ "${OP}" == "validate-blueprints" ]; then
cfy init
cfy blueprints validate -p aws-ec2-blueprint.yaml
cfy blueprints validate -p openstack-blueprint.yaml
cfy blueprints validate -p simple-blueprint.yaml
else
exit 1
fi;