summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* OpenDev Migration PatchHEADmasterOpenDev Sysadmins2019-04-191-2/+2
| | | | | | | | | | | | | | | This commit was bulk generated and pushed by the OpenDev sysadmins as a part of the Git hosting and code review systems migration detailed in these mailing list posts: http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html Attempts have been made to correct repository namespaces and hostnames based on simple pattern matching, but it's possible some were updated incorrectly or missed entirely. Please reach out to us via the contact information listed at https://opendev.org/ with any questions you may have.
* Replace openstack.org git:// URLs with https://Ian Wienand2019-03-248-12/+12
| | | | | | | | | | | | | | | | | This is a mechanically generated change to replace openstack.org git:// URLs with https:// equivalents. This is in aid of a planned future move of the git hosting infrastructure to a self-hosted instance of gitea (https://gitea.io), which does not support the git wire protocol at this stage. This update should result in no functional change. For more information see the thread at http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html Change-Id: Id83a351a8aa24c455f2cd030e01feb776acd0013
* Write upper-constraints to working-dirJoshua Hesketh2016-05-311-2/+2
| | | | Change-Id: I09e6d10385479ecb23af6391c09b67d42dead201
* Update branch supportJoshua Hesketh2016-05-311-61/+29
| | | | | | | | | | Because old migrations haven't been removed from nova turbo-hipster was happy to upgrade all the way to trunk from any old version. However, we should step through each branch as that's the method we as deployers to use. Change-Id: Ie8d57379c316e25deef720bfa8872f38218dde1f
* Add support for upper-constraints with nova reqsJoshua Hesketh2016-05-311-8/+11
| | | | Change-Id: I6e55e31ae0f92e53cb71359026662c864dda9a4a
* Merge "remove python 2.6 trove classifier"Jenkins2016-04-141-1/+0
|\
| * remove python 2.6 trove classifierDoug Hellmann2015-12-231-1/+0
| | | | | | | | | | | | | | OpenStack projects are no longer being tested under Python 2.6, so remove the trove classifier implying that this project supports 2.6. Change-Id: I871e98dfbef99d8f50c47c435d21fb615e7e1eb9
* | Add pip freeze for debuggingJoshua Hesketh2016-04-041-0/+1
| | | | | | | | | | | | To assist with debugging show what's in the venv. Change-Id: If2c1455eaef22cf2087803860c5226a07801ea3e
* | Workaround for old python in 1204Joshua Hesketh2016-04-041-0/+8
| | | | | | | | | | | | | | Python in ubuntu 12.04 needs an older version of greenlet. This is a workaround while turbo-hipster is upgraded to 16.04. Change-Id: Iaa1c806583f79378e40b76abf11bbce2a4361c45
* | Fix quotes on bash commandJoshua Hesketh2016-03-221-1/+1
| | | | | | | | Change-Id: I784f28be5477870561a45e79e300198dd9364879
* | Merge "Allow databases to be preloaded"Jenkins2016-03-221-4/+6
|\ \
| * | Allow databases to be preloadedJoshua Hesketh2016-03-221-4/+6
| |/ | | | | | | | | | | | | | | | | To speed up bootstrapping time for turbo-hipster, check if the database exists before creating it with the seed data as part of the job run. This allows us to preload the database (as part of a nodepool image build) which will save a lot of time. Change-Id: Ieb09e714e24fe6df3ce148e44d5c1148739751c0
* | Merge "Deprecated tox -downloadcache option removed"Jenkins2016-02-211-3/+0
|\ \
| * | Deprecated tox -downloadcache option removedOndřej Nový2015-12-111-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Caching is enabled by default from pip version 6.0 More info: https://testrun.org/tox/latest/config.html#confval-downloadcache=path https://pip.pypa.io/en/stable/reference/pip_install/#caching Change-Id: I481d8a9e1f079dcf8e135d18a665cc5df038b803
* | | Merge "Change stackforge to openstack"Jenkins2016-02-210-0/+0
|\ \ \
| * | | Change stackforge to openstackOndřej Nový2015-12-111-1/+1
| |/ / | | | | | | | | | Change-Id: I2097af3510e71711dfbe753fe0d36c0b1318b459
* | | Remove argparse from requirementsAndreas Jaeger2016-01-201-1/+0
| |/ |/| | | | | | | | | | | | | | | | | argparse was external in python 2.6 but not anymore, remove it from requirements. This should help with pip 8.0 that gets confused in this situation. Installation of the external argparse is not needed. Change-Id: Ib7e74912b36c1b5ccb514e31fac35efeff57378d
* | Update .gitreview to openstack namespaceJoshua Hesketh2015-12-171-1/+1
| | | | | | | | Change-Id: Ia1963cf105bc0e2de2fec10f2a8ab76fc2ee819f
* | Use account id with new gerritJoshua Hesketh2015-12-171-2/+6
|/ | | | Change-Id: I75323161c2232651ff357b639856494e63155550
* Merge "Let scripts return some useful message about failure"Jenkins2015-11-111-1/+13
|\
| * Let scripts return some useful message about failureJan Kundrát2015-06-121-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch exports a new env var for the script, the $TH_RESULT_FILE. If the launched script writes something into the file name specified in that env var and if the content of that file doesn't appear to indicate a successful build, the content of the file is used as summary message sent back to Zuul. Originally, this patch attempted to do a similar thing through reading back stuff from the shell's output log and reporting the last line from that output, but the two major disadvantages were the inclusion of timestamps in the log output, and Python's enrichment of the log line with timestamps. I pondered writing a custom Python's logging.Handler which simply remembers the last message, but the required changes in utils.execute_to_log appeared rather messy to my untrained eye. The main driver behind this change is a need to differentiate from hard build failures (where we don't get any build artifacts because the build simply failed) from "mere" test failures. Yes, our (KDE) tests are still sloppy, and we have a fair amount of broken test still around, which is why this difference matters to us. The result field in Zuul is more or less free-form, so this patch does not impose any restrictions about its format, except the "cannot start with 'SUCCESS'" because that one is indeed very, very special. It can be seen in action at http://ci-logs.kde.flaska.net/matrix.html . Change-Id: I48c29d2566da12b02dcf27a551a058ecc4a303d4
* | Pin Pillow below 3Joshua Hesketh2015-10-071-0/+5
| | | | | | | | Change-Id: I7a483e9f98a4c63332718bcf327b71b7b279998a
* | Merge "Replace ci.o.o links with docs.o.o/infra"Jenkins2015-09-181-1/+1
|\ \
| * | Replace ci.o.o links with docs.o.o/infraJeremy Stanley2015-05-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | The http://ci.openstack.org/ documentation site has been deprecated, replaced by redirects to corresponding paths within http://docs.openstack.org/infra/ where other Project Infrastructure documentation already resides. Change-Id: I8c7f0d87fafb8e6d2f41e4917008df0bbb603423
* | | Add tool for updating datasetsJoshua Hesketh2015-07-131-0/+278
| | | | | | | | | | | | | | | | | | Crude copy of migration script for updating datasets for testing. Change-Id: Ic92809c2b9f963af94ca43872835a7e43a9c6d35
* | | Disable migrate-flavor-dataJoshua Hesketh2015-07-131-7/+7
| | | | | | | | | | | | | | | | | | | | | The testing datasets are being updated to include this. This would still be useful to test in the future if we fix kilo Change-Id: I9d8849ce7b58eb5e2fd61c91ce691b58d27f3745
* | | Remove migration check on flavor updateJoshua Hesketh2015-07-101-11/+7
| | | | | | | | | | | | Change-Id: Iefb354425fb485ac3caeac7d2644b5db32cfc933
* | | Migrate flavor data is only available in kiloJoshua Hesketh2015-07-101-14/+14
| | | | | | | | | | | | | | | | | | | | | Migrate the flavor data while on the kilo branch no that the function is no longer in master. Change-Id: I289539fe4bbfb7a452bae9698a76aeadb7e0da48
* | | icehouse is eol nowJoshua Hesketh2015-07-071-3/+4
| | | | | | | | | | | | Change-Id: I0f825779fa1e7fba5578baf7dc22cff2a5e8e2f5
* | | Track upstream merge failuresJoshua Hesketh2015-06-121-7/+28
| |/ |/| | | | | | | | | | | | | zuul_enqueue is a crude tool for rechecking turbo-hipster when it goes haywire. There is no point rechecking patches that have failed to merge. Change-Id: Ib78736e5648131771b2872c30892b6beda6efc46
* | Fix envvars to be stringsJoshua Hesketh2015-06-051-1/+1
| | | | | | | | Change-Id: Ia777482a44cbcc3199fb71cd0712cd498e652730
* | Make git more verbose for debuggingJoshua Hesketh2015-06-052-7/+8
| | | | | | | | Change-Id: I05ebe9e58bacc324dbe4430ef9627dd81c14f023
* | Set env so git global has $HOMEJoshua Hesketh2015-06-041-4/+6
| | | | | | | | | | | | Currently setting git config fails because the env isn't complete. Change-Id: I95cabe87b9ad99cafb62b1f3595122f8f9c34649
* | Fix hacking and requirementsJoshua Hesketh2015-06-0410-23/+12
|/ | | | Change-Id: Ie7a36b0a7957f102b6a1195cdc7c0403cdd9545a
* Harden git cloningJoshua Hesketh2015-05-011-0/+7
| | | | Change-Id: Ie2659a265c5198c106c85f1ac0cf938ece29b286
* Add support to upgrade via Juno and KiloJoshua Hesketh2015-05-011-1/+29
| | | | | | | | Rather than stepping through the migrations just in master (which works fine assuming they are no different to previous releases) checkout the correct stable branch and walk through that. Change-Id: Iff79684990cbbaa8c6ed2474aca77a2f73d64b96
* Only record stats right after migrationJoshua Hesketh2015-04-301-1/+1
| | | | Change-Id: Idad9ee4c5b9697245e28d27dc576ad1e9e0556aa
* add mysql counters before flavor migrateJoshua Hesketh2015-04-301-0/+2
| | | | Change-Id: I605077ae5c16c8b4bdff51cca59c62ffedf632db
* Fix mysql counters for migrate_flavor_dataJoshua Hesketh2015-04-301-0/+2
| | | | Change-Id: Ibfbe082ccbbfcb0826c6805c83745daece27389e
* Force migrate flavour dataJoshua Hesketh2015-04-309-1/+7
| | | | | | Disable tests while buggy to get this through. Change-Id: Ia4dcb6ba1f8aaf4d6fc1a287575dfe991b5cb505
* Set the max-number very highJoshua Hesketh2015-04-221-1/+1
| | | | | | | A work around until I fix nova to take no max-number input (and migrate them all) Change-Id: Iba4cb3faae928637555ccf3023841af3406824b6
* Fix migrate_flavor_dataJoshua Hesketh2015-04-211-1/+1
| | | | | | The docs lied. Change-Id: I582b0ebacae0f470a5d2b03ba3874a4e7b2e7d6a
* Fix migrate-flavor-data commandJoshua Hesketh2015-04-211-1/+3
| | | | | | Missed the db sub-command Change-Id: I4f0170dcceaecd3151f8805b3a085e52086510af
* Migrate flavour data at migration 291Joshua Hesketh2015-04-211-0/+8
| | | | | | | | It's a little hacky but saves checking the logs for a failed upgrade and then applying the migration and re-doing it. (Which would be complicated due to the way handle_results works). Change-Id: I8fd0c206c027f8cf984ba9fbd011cb6c6277f2b7
* Remove downgrade testsJoshua Hesketh2015-04-211-10/+15
| | | | | | | | As per https://github.com/openstack/openstack-specs/blob/master/specs/no-downward-sql-migration.rst we no longer support downgrades. Change-Id: I13edde60a61de09d83811bfa00733b5dec7771b4
* Add extra debugging info on git failureJoshua Hesketh2015-02-262-1/+4
| | | | | | | Fetching from git sometimes fails. Log the IP in these cases so we can investigate the git.o.o logs Change-Id: I09994cf0706670c44412f5d6da97c67329b40d1b
* Merge "Send results back on failure"Jenkins2015-02-241-2/+4
|\
| * Send results back on failureJoshua Hesketh2015-02-241-2/+4
| | | | | | | | Change-Id: I2ffb64c4c96ab5d600e6381a74bf0c5080618ea3
* | Merge "Remove depreciated download cache"Jenkins2015-02-241-1/+1
|\ \ | |/
| * Remove depreciated download cacheJoshua Hesketh2015-02-241-1/+1
| | | | | | | | Change-Id: Iac3a2bf2a94f3a02d6bd4d12ee599398dc238d1d