Skip to content

Commit

Permalink
3.3.6 build (#433)
Browse files Browse the repository at this point in the history
* update for build

* bump version

* remove executor

* foo

* making some changes
  • Loading branch information
EarthmanT authored Oct 1, 2023
1 parent 7d2cd41 commit a674c98
Show file tree
Hide file tree
Showing 10 changed files with 1,999 additions and 134 deletions.
93 changes: 36 additions & 57 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
version: 2.1

job-post-steps: &job-post-steps
post-steps:
- slack/notify_failed

unittest-post-steps: &unittest-post-steps
post-steps:
- store_test_results:
path: /home/circleci/project/nosetests.xml
- store_artifacts:
path: /home/circleci/project/coverage.xml
prefix: tests
- slack/notify_failed

orbs:
node: cloudify/public-unittest-orb@1 #orb version
wagonorb: cloudify/[email protected] #orb version
releaseorb: cloudify/[email protected] #orb version
managerorb: cloudify/[email protected]
node: cloudify/public-unittest-orb@volatile
wagonorb: cloudify/wagon-bulder-orb@volatile
releaseorb: cloudify/release-orb@volatile
managerorb: cloudify/manager-orb@volatile
slack: cloudify/notify-slack@2

checkout:
post:
Expand All @@ -15,80 +29,45 @@ checkout:
git checkout -qf FETCH_HEAD
fi
executors:

py36:
docker:
- image: circleci/python:3.6

workflows:
version: 2.1
version: 2
tests:
jobs:
- node/unittests_job
- node/check_py3_compat_job
- node/unittests_job:
context:
- plugins-inputs
- node/validate_version_job
- node/validate_documentation_job
- wagonorb/wagon:
filters:
branches:
only: /([0-9\.]*\-build|master|2.X-master)/
- wagonorb/rhel_wagon:
filters:
branches:
only: /([0-9\.]*\-build|master|2.X-master)/
- wagonorb/arch64_wagon:
- wagonorb/wagon_311:
filters:
branches:
only: /([0-9\.]*\-build|master|2.X-master)/
- wagonorb/build_bundle:
filters:
branches:
only: /([0-9\.]*\-build|master|2.X-master)/
requires:
- wagonorb/wagon
- wagonorb/arch64_wagon
- wagonorb/rhel_wagon
only: /([0-9\.]*\-build|master|dev)/
- releaseorb/release:
filters:
branches:
only: /(master|2.X-master)/
only: /master/
requires:
- node/validate_version_job
- node/validate_documentation_job
- wagonorb/wagon
- wagonorb/rhel_wagon
- wagonorb/build_bundle
- node/unittests_job
- releaseorb/merge_docs_job:
filters:
branches:
only: /(master|2.X-master)/
requires:
- releaseorb/release
- wagonorb/wagon_311
- node/validate_version_job
- node/validate_documentation_job

nightly:
triggers:
- schedule:
cron: "0 1 * * *"
cron: "0 1 * * 0,1,3,5"
filters:
branches:
only: /(master|2.X-master)/
only:
- master
jobs:
- node/unittests_job
- node/check_py3_compat_job
- node/validate_version_job
- wagonorb/arch64_wagon:
filters:
branches:
only: /(master|2.X-master)/
- wagonorb/wagon:
filters:
branches:
only: /(master|2.X-master)/
- wagonorb/rhel_wagon:
- node/unittests_job:
context:
- plugins-inputs
# <<: *unittest-post-steps
- wagonorb/wagon_311:
filters:
branches:
only: /(master|2.X-master)/
only: /([0-9\.]*\-build|master|dev)/
4 changes: 0 additions & 4 deletions .circleci/validate_docs.py

This file was deleted.

12 changes: 0 additions & 12 deletions .circleci/validate_version.py

This file was deleted.

1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
3.3.6: Support Python 3.11 and discontinue 3.6.
3.3.5: add extra_specs and tenant access to flavor type.
3.3.4: support dsl 1_4 and redhat 8 wagons.
3.3.3: Bump openstacksdk to 0.53.0 to to fix server_groups attribute error
Expand Down
1 change: 1 addition & 0 deletions openstack_plugin/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version = '3.3.6'
2 changes: 1 addition & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins:
openstack:
executor: central_deployment_agent
package_name: cloudify-openstack-plugin
package_version: '3.3.5'
package_version: 3.3.6

dsl_definitions:

Expand Down
2 changes: 1 addition & 1 deletion plugin_1_4.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins:
openstack:
executor: central_deployment_agent
package_name: cloudify-openstack-plugin
package_version: '3.3.5'
package_version: 3.3.6

dsl_definitions:

Expand Down
Loading

0 comments on commit a674c98

Please sign in to comment.