Skip to content

Commit 9feee59

Browse files
2.14.26 build (#435)
* 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]>
1 parent bd08f04 commit 9feee59

File tree

12 files changed

+2071
-41
lines changed

12 files changed

+2071
-41
lines changed

.circleci/config.yml

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
version: 2.1
22

3+
unittest-post-steps: &unittest-post-steps
4+
post-steps:
5+
- store_test_results:
6+
path: /home/circleci/project/nosetests.xml
7+
- store_artifacts:
8+
path: /home/circleci/project/coverage.xml
9+
prefix: tests
10+
- slack/notify_failed
11+
312
orbs:
4-
node: cloudify/public-unittest-orb@1 #orb version
5-
wagonorb: cloudify/[email protected] #orb version
6-
releaseorb: cloudify/[email protected] #orb version
7-
managerorb: cloudify/manager-orb@1
13+
node: cloudify/public-unittest-orb@volatile
14+
wagonorb: cloudify/wagon-bulder-orb@volatile
15+
releaseorb: cloudify/release-orb@volatile
16+
managerorb: cloudify/manager-orb@volatile
17+
slack: cloudify/notify-slack@2
818

919
checkout:
1020
post:
@@ -24,38 +34,36 @@ workflows:
2434
tests:
2535
jobs:
2636
- node/check_py3_compat_job
27-
- node/unittests_job
37+
- node/unittests_job:
38+
context:
39+
- plugins-inputs
2840
- node/validate_version_job
2941
- node/validate_documentation_job
3042
- wagonorb/wagon:
3143
filters:
3244
branches:
3345
only: /([0-9\.]*\-build|master|2.X-master)/
34-
- wagonorb/arch64_wagon:
46+
- wagonorb/wagon_311:
3547
filters:
3648
branches:
3749
only: /([0-9\.]*\-build|master|2.X-master)/
38-
- wagonorb/rhel_wagon:
50+
- wagonorb/arch64_wagon:
3951
filters:
4052
branches:
4153
only: /([0-9\.]*\-build|master|2.X-master)/
42-
- wagonorb/build_bundle:
54+
- wagonorb/rhel_wagon:
4355
filters:
4456
branches:
4557
only: /([0-9\.]*\-build|master|2.X-master)/
46-
requires:
47-
- wagonorb/wagon
48-
- wagonorb/arch64_wagon
49-
- wagonorb/rhel_wagon
5058
- releaseorb/release:
5159
filters:
5260
branches:
5361
only: /(master|2.X-master)/
5462
requires:
5563
- wagonorb/wagon
64+
- wagonorb/wagon_311
5665
- wagonorb/arch64_wagon
5766
- wagonorb/rhel_wagon
58-
- wagonorb/build_bundle
5967
# - node/validate_version_job
6068
- node/validate_documentation_job
6169
- releaseorb/merge_docs_job:
@@ -76,4 +84,6 @@ workflows:
7684
jobs:
7785
- node/check_py3_compat_job
7886
- node/validate_version_job
79-
- node/unittests_job
87+
- node/unittests_job:
88+
context:
89+
- plugins-inputs

CHANGELOG.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
2.14.26: Manylinux and DSL 1.5.
12
2.14.25: Support Redhat8 and dsl 1_4.
23
2.14.24: Rerelease for ARM64 wagon.
34
2.14.23:

constraints.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
PyYAML==3.12
1+
oslo.config==7.0.0
22
subprocess32==3.5.3
33
pyrsistent===0.16.1
4+
openstacksdk===0.15.0
45
cloudify-common>=5.1.0
5-
cryptography==3.3.2
6-
oslo.config==7.0.0

extra-packaging-instructions.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
if [[ $PY311 == 1 ]]
2+
then
3+
mkdir -p ./pydoc
4+
touch ./pydoc/__init__.py
5+
cat <<EOF > ./pydoc/__init__.py
6+
def get_doc(*args):
7+
return ''
8+
EOF
9+
mkdir -p ./webbrowser
10+
touch ./webbrowser/__init__.py
11+
cat <<EOF > ./webbrowser/__init__.py
12+
EOF
13+
git apply python311.patch
14+
echo patch applied
15+
fi
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
version = '2.14.26'

plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins:
66
openstack:
77
executor: central_deployment_agent
88
package_name: cloudify-openstack-plugin
9-
package_version: '2.14.25'
9+
package_version: '2.14.26'
1010

1111
data_types:
1212
cloudify.openstack.types.custom_configuration:

plugin_1_4.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins:
66
openstack:
77
executor: central_deployment_agent
88
package_name: cloudify-openstack-plugin
9-
package_version: '2.14.25'
9+
package_version: '2.14.26'
1010

1111
data_types:
1212
cloudify.openstack.types.custom_configuration:

0 commit comments

Comments
 (0)