Skip to content

Commit

Permalink
Merge branch 'CY-968-sync-cloudify-common-versions'
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammed AbuAisha committed Jan 16, 2019
2 parents 0a25c07 + e83e91b commit 3e975a7
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 4 deletions.
44 changes: 44 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,52 @@ jobs:
- run: /home/circleci/.local/bin/tox -e flake8
- run: /home/circleci/.local/bin/tox -e py27

wagon:
docker:
- image: amd64/centos:centos7.3.1611
steps:
- checkout
- run:
name: Install dependencies
command: yum -y install python-devel gcc openssl git libxslt-devel libxml2-devel openldap-devel libffi-devel openssl-devel libvirt-devel
- run:
name: Download pip
command: curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
- run:
name: Install pip
command: python get-pip.py
- run:
name: Upgrade pip
command: pip install --upgrade pip==9.0.1
- run:
name: Install virtualenv
command: pip install virtualenv
- run:
name: Init virtualenv
command: virtualenv env
- run:
name: Install wagon
command: pip install wagon==0.3.2
- run:
name: many_linux
command: echo "manylinux1_compatible = False" > "env/bin/_manylinux.py"
- run:
name: make workspace
command: mkdir -p workspace/build
- run:
name: Create wagon
command: source env/bin/activate && wagon create -s . -v -o workspace/build -f -a '--no-cache-dir -c constraints.txt'
- persist_to_workspace:
root: workspace
paths:
- build/*

workflows:
version: 2
tests:
jobs:
- unittests
- wagon:
filters:
branches:
only: /([0-9\.]*\-build|master|dev)/
4 changes: 2 additions & 2 deletions plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
plugins:
openstack:
executor: central_deployment_agent
source: https://github.com/cloudify-cosmo/cloudify-openstack-plugin/archive/2.14.7.zip
source: https://github.com/cloudify-cosmo/cloudify-openstack-plugin/archive/2.14.8.zip
package_name: cloudify-openstack-plugin
package_version: '2.14.7'
package_version: '2.14.8'

data_types:
cloudify.openstack.types.custom_configuration:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
setup(
zip_safe=True,
name='cloudify-openstack-plugin',
version='2.14.7',
version='2.14.8',
author='Cloudify',
author_email='[email protected]',
packages=[
Expand All @@ -33,7 +33,7 @@
license='LICENSE',
description='Cloudify plugin for OpenStack infrastructure.',
install_requires=[
'cloudify-plugins-common>=3.4.1',
'cloudify-plugins-common>=3.4.2',
'keystoneauth1>=2.16.0,<3',
'python-novaclient==7.0.0',
'python-keystoneclient==3.5.0',
Expand Down

0 comments on commit 3e975a7

Please sign in to comment.