Skip to content

Commit 3d493a2

Browse files
authored
Merge branch 'master' into new-path
2 parents 8eda0e8 + 51bd374 commit 3d493a2

2 files changed

Lines changed: 5 additions & 15 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,19 +163,19 @@ commands:
163163
pip install -r test-requirements.txt
164164
- run:
165165
name: download manager docker image
166-
command: wget http://repository.cloudifysource.org/cloudify/5.1.0/.dev1-release/cloudify-docker-manager-5.1.0.dev1.tar
166+
command: wget http://repository.cloudifysource.org/cloudify/5.1.0/.dev1-release/cloudify-manager-aio-docker-5.1.0.dev1.tar
167167
- run:
168168
name: load docker image
169-
command: docker load -i cloudify-docker-manager-5.1.0.dev1.tar
169+
command: docker load -i cloudify-manager-aio-docker-5.1.0.dev1.tar
170170
- run:
171171
name: retain space by dumping the tar
172-
command: rm cloudify-docker-manager-5.1.0.dev1.tar
172+
command: rm cloudify-manager-aio-docker-5.1.0.dev1.tar
173173
- run:
174174
name: show images
175175
command: docker images
176176
- run:
177177
name: start docker container
178-
command: docker run --name cfy_manager -d --restart unless-stopped -v /sys/fs/cgroup:/sys/fs/cgroup:ro --tmpfs /run --tmpfs /run/lock --security-opt seccomp:unconfined --cap-add SYS_ADMIN --network host cloudifyplatform/premium-cloudify-manager-aio
178+
command: docker run --name cfy_manager -d --restart unless-stopped -v /sys/fs/cgroup:/sys/fs/cgroup:ro --tmpfs /run --tmpfs /run/lock --security-opt seccomp:unconfined --cap-add SYS_ADMIN --network host cloudify-manager-aio:latest
179179
- run:
180180
name: install local project
181181
command: pip install https://github.com/cloudify-incubator/cloudify-ecosystem-test/archive/latest.zip

.circleci/test_examples.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,6 @@
2222
cleanup_on_failure, prepare_test
2323
)
2424

25-
'''Temporary until all the plugins in the bundle will
26-
released with py2py3 wagons'''
27-
UT_VERSION = '1.23.5'
28-
UT_WAGON = 'https://github.com/cloudify-incubator/cloudify-utilities-plugin/' \
29-
'releases/download/{v}/cloudify_utilities_plugin-{v}-centos' \
30-
'-Core-py27.py36-none-linux_x86_64.wgn'.format(v=UT_VERSION)
31-
UT_PLUGIN = 'https://github.com/cloudify-incubator/cloudify-utilities-' \
32-
'plugin/releases/download/{v}/plugin.yaml'.format(v=UT_VERSION)
33-
PLUGINS_TO_UPLOAD = [(UT_WAGON, UT_PLUGIN)]
3425
SECRETS_TO_CREATE = {
3526
'openstack_username': False,
3627
'openstack_password': False,
@@ -44,8 +35,7 @@
4435
'openstack_project_domain_name': False,
4536
}
4637

47-
prepare_test(plugins=PLUGINS_TO_UPLOAD, secrets=SECRETS_TO_CREATE,
48-
execute_bundle_upload=False)
38+
prepare_test(secrets=SECRETS_TO_CREATE)
4939

5040
blueprint_list = ['examples/blueprint-examples/virtual-machine/openstack.yaml']
5141

0 commit comments

Comments
 (0)