-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
bd08f04
commit 9feee59
Showing
12 changed files
with
2,071 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
@@ -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: | ||
|
@@ -76,4 +84,6 @@ workflows: | |
jobs: | ||
- node/check_py3_compat_job | ||
- node/validate_version_job | ||
- node/unittests_job | ||
- node/unittests_job: | ||
context: | ||
- plugins-inputs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
version = '2.14.26' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.