Skip to content

Commit 1aaf19a

Browse files
committed
use bundle and test
1 parent 5a4aa29 commit 1aaf19a

2 files changed

Lines changed: 9 additions & 19 deletions

File tree

.circleci/config.yml

Lines changed: 8 additions & 8 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
@@ -277,25 +277,25 @@ workflows:
277277
- wagon:
278278
filters:
279279
branches:
280-
only: /([0-9\.]*\-build|master|dev)/
280+
only: /([0-9\.]*\-build|master|dev|CY-3060-use-bundle)/
281281
- rhel_wagon:
282282
filters:
283283
branches:
284-
only: /([0-9\.]*\-build|master|dev)/
284+
only: /([0-9\.]*\-build|master|dev|CY-3060-use-bundle)/
285285
- integration_tests_505:
286286
requires:
287287
- wagon
288288
- rhel_wagon
289289
filters:
290290
branches:
291-
only: /([0-9\.]*\-build|master|dev)/
291+
only: /([0-9\.]*\-build|master|dev|CY-3060-use-bundle)/
292292
- integration_tests_510:
293293
requires:
294294
- wagon
295295
- rhel_wagon
296296
filters:
297297
branches:
298-
only: /([0-9\.]*\-build|master|dev)/
298+
only: /([0-9\.]*\-build|master|dev|CY-3060-use-bundle)/
299299
- release:
300300
filters:
301301
branches:

.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)