Skip to content

Commit

Permalink
2.14.26 build (#435)
Browse files Browse the repository at this point in the history
* bump versions

* pinning 36 versions

* add python 311 patch

* pin-openstacksdk

* update-circleci

* update-patch

* update-config

* update-config

* temp-comment-validate

---------

Co-authored-by: EarthmanT <[email protected]>
  • Loading branch information
ahmadiesa-abu and EarthmanT authored Nov 17, 2023
1 parent bd08f04 commit 9feee59
Show file tree
Hide file tree
Showing 12 changed files with 2,071 additions and 41 deletions.
38 changes: 24 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
version: 2.1

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/manager-orb@1
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 @@ -24,38 +34,36 @@ workflows:
tests:
jobs:
- node/check_py3_compat_job
- node/unittests_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/arch64_wagon:
- wagonorb/wagon_311:
filters:
branches:
only: /([0-9\.]*\-build|master|2.X-master)/
- wagonorb/rhel_wagon:
- wagonorb/arch64_wagon:
filters:
branches:
only: /([0-9\.]*\-build|master|2.X-master)/
- wagonorb/build_bundle:
- wagonorb/rhel_wagon:
filters:
branches:
only: /([0-9\.]*\-build|master|2.X-master)/
requires:
- wagonorb/wagon
- wagonorb/arch64_wagon
- wagonorb/rhel_wagon
- releaseorb/release:
filters:
branches:
only: /(master|2.X-master)/
requires:
- wagonorb/wagon
- wagonorb/wagon_311
- wagonorb/arch64_wagon
- wagonorb/rhel_wagon
- wagonorb/build_bundle
# - node/validate_version_job
- node/validate_documentation_job
- releaseorb/merge_docs_job:
Expand All @@ -76,4 +84,6 @@ workflows:
jobs:
- node/check_py3_compat_job
- node/validate_version_job
- node/unittests_job
- node/unittests_job:
context:
- plugins-inputs
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
2.14.26: Manylinux and DSL 1.5.
2.14.25: Support Redhat8 and dsl 1_4.
2.14.24: Rerelease for ARM64 wagon.
2.14.23:
Expand Down
5 changes: 2 additions & 3 deletions constraints.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
PyYAML==3.12
oslo.config==7.0.0
subprocess32==3.5.3
pyrsistent===0.16.1
openstacksdk===0.15.0
cloudify-common>=5.1.0
cryptography==3.3.2
oslo.config==7.0.0
15 changes: 15 additions & 0 deletions extra-packaging-instructions.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
if [[ $PY311 == 1 ]]
then
mkdir -p ./pydoc
touch ./pydoc/__init__.py
cat <<EOF > ./pydoc/__init__.py
def get_doc(*args):
return ''
EOF
mkdir -p ./webbrowser
touch ./webbrowser/__init__.py
cat <<EOF > ./webbrowser/__init__.py
EOF
git apply python311.patch
echo patch applied
fi
1 change: 1 addition & 0 deletions openstack_plugin_common/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version = '2.14.26'
2 changes: 1 addition & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins:
openstack:
executor: central_deployment_agent
package_name: cloudify-openstack-plugin
package_version: '2.14.25'
package_version: '2.14.26'

data_types:
cloudify.openstack.types.custom_configuration:
Expand Down
2 changes: 1 addition & 1 deletion plugin_1_4.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins:
openstack:
executor: central_deployment_agent
package_name: cloudify-openstack-plugin
package_version: '2.14.25'
package_version: '2.14.26'

data_types:
cloudify.openstack.types.custom_configuration:
Expand Down
Loading

0 comments on commit 9feee59

Please sign in to comment.